If someone hits the STOP button in the middle of loading a page/script, does it stop? eg. What if it's in the middle of something important, is there a way to make sure the scripts carries on till it's finished, even if the user hits stop?!
If a user hits STOP your script stops. You can use ignore_user_abort() with the argument set to TRUE. This will allow the script to carry on if the user stops. Use ignore_user_abort() with the argument set to FALSE at the end of the script.
Thanks!