I known there is a command that let me make my scripts run even if the user close the browser window. May i known it?! Because i can't remember it
no phper thats not what hes looking for... i know what hes talking about and i am just trying to recall what it is
ignore_user_abort(); is the function edit: posted too late haha... i used to have a function where you could set it like a cron ill see if i can find it edit 2: ignore_user_abort(); // run script in background set_time_limit(0); // run script forever $interval=60*15; // do every 15 minutes... do{ // add the script that has to be ran every 15 minutes here // ... sleep($interval); // wait 15 minutes }while(true);