<?php $str = "apple"; $length = strlen($str); for ($index = 0; $index < $length; $index++) { echo $str[$index]; echo "<br>"; } ?>