Source Code:
(back to article)
<?php $colors = array("red", "green", "blue"); foreach ($colors as $color) { echo $color . "<br>"; } ?>
Result:
Report an issue