Alternative syntax for foreach loops in PHP:
foreach($array as $element): #do something endforeach;
This is an alternative syntax - which can be handy for use in templates. The ususal syntax is described here:
http://php.net/foreach