Jump to content

endforeach causes errors


ivytony

Recommended Posts

I'm learning to use the Codeigniter framework. When I run my code, I got this error:

 

Parse error: syntax error, unexpected T_ENDFOREACH in C:\Apache2.2\htdocs\Codeigniter\system\application\views\blog_view.php on line 16

 

Line 16 is <?php endforch; ?>. The php version on my local PC is 5.2.5. I am wondering how to enable it to support endforeach.

Link to comment
https://forums.phpfreaks.com/topic/97629-endforeach-causes-errors/
Share on other sites

How do you start the foreach loop. In order for endforeach to work, the foreach statement will need to be like this:

<?php foreach($arr as $key => $value): ?>

Notice the colon at the end. Then to close the foreach call the endforeach keyword.

 

Code as whole:

<?php foreach($arr as $key => $value): ?>
    ... your html here ...
   <?php echo $key . '=>' . $value; ?><br />
   ... more html ...
<?php endforeach; ?>

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.