Back To The Future

<?php
    $speed = 0;
    function doc($great_scott){
        echo $great_scott;
    }
    while($speed <= 88){
        if($speed == 88){
            doc("We're sending you back, to the future");
        }
        $speed++;
    }
?>
Vote up this code1