Forum Moderators: coopster

Message Too Old, No Replies

Does mysql still go when php script ends?

         

TravelSite

3:53 pm on Aug 10, 2005 (gmt 0)

10+ Year Member



I've created a php page/script running on localhost that (after 30 minutes or so) displays the standard "The page cannot be displayed" message.

I noticed though that mysql was still adding in data to my table (INSERT requests) after the page/script timed out. The script uses the fsockopen function (don't know if this makes any difference).

Does mysql still run after the page/script has stopped - or is the script still running somewhere even if IE is showing the above message?

Thanks

jatar_k

5:11 pm on Aug 10, 2005 (gmt 0)

WebmasterWorld Administrator 10+ Year Member



once the script dies everything is done, it terminates all conections to mysql from that script.

I am guessing you have a logic looping problem somewhere.