Alternative foreach statement

suggest change
<?php

foreach ($collection as $item):
    do_something($item);
endforeach;

?>

<?php foreach ($collection as $item): ?>
    <p>Do something in HTML with <?php echo $item; ?></p>
<?php endforeach; ?>

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


Alternative syntax for control structures:
*Alternative foreach statement

Table Of Contents
19XML
26Alternative syntax for control structures
81PDO
102APCu
108PSR