I have a script that may take upwards of half an hour to completely run. As you can imagine the page was timing out with max execution error. I stopped this by putting set_time_limit(20) at the top of the while loops.
Problem is now that it seems that one of two things are happening.....
1.) Can a browser run out of memory or does it flush itself?
(I'm using windows as a platform)
2.) If not is there a way to trick PHP into believing that the script has stopped and is starting again without actually doing it?
Any suggestions for scripts of this magnitude?