Is there a function, or simple script that will delay processing by seconds, or whatever time I need?
For example:
require('include/script1.php');
// wait 3 seconds to start the next script.......
require('include/script2.php');
// wait 3 seconds to start the next script.......
require('include/script3.php');
Any ideas?
-thanks!