PHP - CodeIgniter

Posted by nXqd on Stack Overflow See other posts from Stack Overflow or by nXqd
Published on 2010-04-05T11:00:41Z Indexed on 2010/04/05 11:03 UTC
Read the original article Hit count: 413

Filed under:
|

I try to write a site with CodeIgniter but I've a problem with PHP. I'm sure that it's so simple and can't be wrong. But I don't know bugs from , just a newbie of CodeIgniter :)

    <html>  
    <head>  
        <title><?=$page_title?></title>  
    </head>  
    <body>  
        <?php foreach($result as $row):?>  
        <h3><? echo $row->title; ?></h3>  
        <p><? echo $row->text; ?></p>  
        <?php endforeach;?>  
    </body>  
</html> 

I've a bug from this file :

A PHP Error was encountered

Severity: Warning

Message: Invalid argument supplied for foreach()

Filename: views/helloworld_view.php

Line Number: 6

thanks in advance for reading this :)

© Stack Overflow or respective owner

Related posts about php

Related posts about codeigniter