<?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++;
}
?>
$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++;
}
?>