Hi There,
Just wondering how to momentarily pause a PHP script. IE: I need to send out a bunch of emails to clients and don't want to bog down the server.
Thanks,
-dr
try sleep(int seconds)
like:
sleep(5);
delays execution for 5 seconds.
for more see: http://www.php.net/manual/en/function.sleep.php
Hope that helps