Can anybody explain me how to idle php script? or execute some function after some time. It should be done without client interupting.
You can use sleep() to make PHP go to sleep for x seconds.
However, this means the script remains running, and keeps memory in use etc.
If you want to start a script at a give time and you run unix, use the crontab. (search the forum)