Source Code:
(back to article)
<?php $colors = array("Red", "Green", "Blue"); foreach ($colors as $value) { echo "$value \n"; } ?>
Result:
Report an issue