hi
i have problem to set time limit runtime
this code work at local ,
but wen i try to execute it on server it display FastCGI execution proces
i try to change htaccess file with php_value max_execution_time 90000
but it cant give any change
<?php
set_time_limit (35) ;
for($i=0;$i<=100;$i++)
{
echo $i."<br>";
sleep (1) ;
}
?>