Ben bunun için bir düzeltme gerekiyor. Burada
benim kod sadece bir parçası
<?php
$number = 30;
while($number > 0) {
$number--;
sleep(30);
print "$number . Posted<br>";
}
?>
Döngüsünde döngü süreç aslında çok daha büyük olduğunu, ben sadece önemli şeyler koymak.
Anyways as you can see it should print
30 posted
(wait 30 seconds)
29 Posted
(wait 30 seconds)
28 Posted
(wait 30 seconds)
But instead it waits till the loop is over, then just prints it all at once. Is there a fix for this? I was thinking an ajax method, but I dont know of any.