Forum Moderators: coopster
Is there some way to detect the elapsed execution time of a script, in order to suspend it automatically and prevent the timeout?
Thanks in advance!
To detect run-time, use something like this:
<?php$start=time();while (($long_slow_loop)&&(time()<($start+25))){......}?>