Every Ice Age Movie

<?php

$scrat=0;
$acorn=$scrat+1;

for ($run=$iceage; $run<=$iceage; $run++) {

echo "Ice Age ".$iceage++."<br>";

    echo "Acorn: ".$acorn." - ";
    $acorn++;
   
    echo "Scrat: ".$scrat."<br><br>";
    $scrat++;
}

?>
Vote up this code0