unexpected T_ENDFOREACH

I’m having trouble working through a tutorial and I’m not sure why…

I’m getting this error…

Parse error: syntax error, unexpected T_ENDFOREACH in /Applications/MAMP/htdocs/tut_blog/app/views/posts/index.ctp on line 15

here is the file

View All Posts

<?php foreach ($posts as $post); ?>
<?php endforeach; ?>
Title Body
<?php echo $post['Post'] ['title']; ?> <?php echo $post['Post']['body']; ?>

any suggestions?

The problem is syntax, the end of foreach are } and nor endforeach;
Also you should begin with { not ;
[php]

View All Posts

<?php foreach ($posts as $post) { ?> <?php }?>
Title Body
<?php echo $post['Post'] ['title']; ?> <?php echo $post['Post']['body']; ?>
[/php]
Sponsor our Newsletter | Privacy Policy | Terms of Service