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
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; ?>

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.