$numericArray = array("Apple", "Banana", "Orange");

$i = 0;
while ($i < count($numericArray)) {
    echo $numericArray[$i] . "<br>";
    $i++;
}