Source Code:
(back to article)
<?php $fruits = array("apple", "banana", "cherry"); for ($i = 0; $i < count($fruits); $i++) { echo $fruits[$i]; } ?>
Result:
Report an issue