A bit bored and never used the sleep() function before but it doesnt really seem to do anything
All I wanted the script to do was echo from 0 to 100 with a 1 second delay in between but it just seems to hang
Not an important bit of code but its a function I've never used before so was just seeing how simple it is to use
$i = 0;
do {
echo $i."<br>";
sleep(1000000);
$i++;
} while($i < 100);