i have this php script:
<?php
set_time_limit(100); // set the maximum execution time to 60 seconds
while (1>0){
echo 'Script execution completed.';
sleep(10); }
?>
it executes perfectly on terminal but doesn't even load on firefox what to do ?
i've set the max_execution_time in php.ini
to 100, it didn't help