Hi All
I know the max time out parameter in the php.ini file tells the parser how long to wait until terminating the script that is running.
Is there a way of telling the parser what to do after the script terminates? In the unlikely even that the script runs for more than 30 seconds, I’d like to force a particular page to load, is this possible?
Many thanks
Tim
No, to the best of my knowledge this isnt possible.
After the parser stops executing, thats it.
Maybe somehow you could develop a function that counted seconds, and after 30 seconds it would forward them to another page via header();
Cheers.
set_time_limit() ...