File: neverstartwhile.php ← Back to List
Live Output
This is The End
Source Code
<?php
    $x=1;
    while($x<=0){
        echo "This Number $x is the best";
        $x++;
    }
    echo "This is The End";
?>