The never ending story


function story(){
    for($i=0;$i>0;$i++){
        story();
    }else{
        end;
    }
}
story();
?>
Vote up this code1
  • PHP Coder

    The else statement does not exist in PHP for the “for” loop…

  • Joe

    10 STORY()
    20 GOTO 10

  • Frederik Vosberg

    The for loop has a wrong condition!

    for($i=0; $i >=0;$i++)