Source Code:
(back to article)
<?php $fruits = array("apple", "banana", "cherry"); foreach ($fruits as $fruit) { echo $fruit . "<br>"; } ?>
Result:
Report an issue