Re: [PHP] Statistics function

2001-03-15 Thread Derek Sivers
the connection will close when you hit cancel but the PHP code can continue running if you choose. Really?!? How do you choose to have the PHP script continue even if a browser leaves/dumps? I've always wanted to do that. Didn't know it was possible. -- PHP General Mailing List

Re: [PHP] Statistics function

2001-03-15 Thread Christian Reiniger
On Thursday 15 March 2001 08:34, you wrote: If you want to get round-trip times including transmission to the user, you'd need to have some way of getting the user's browser to record a second request, which introduces a lot of potential variables. Why not simply use "ab" (the benchmarking

Re: [PHP] Statistics function

2001-03-14 Thread Chris Adams
On 14 Mar 2001 22:11:10 -0800, Rick St Jean [EMAIL PROTECTED] wrote: All through this process there is a live thread between your browser and the server. unless you send a cancel. One minor addition - the connection will close when you hit cancel but the PHP code can continue running if you

Re: [PHP] Statistics function

2001-03-14 Thread Chris Adams
On 14 Mar 2001 21:39:05 -0800, Lauri Vain [EMAIL PROTECTED] wrote: How does the behind the scenes work by PHP exactly go? Does the PHP thread remain active so long as the information is sent to the visitor? Or will PHP parse the code and send it to Apache which will send the data to the user