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

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