RE: [PHP] Re: webserver response-time, how?

2004-08-04 Thread Vail, Warren
I support several PHPNuke sites and the page preparation time is measured by taking a microtime stamp at the very beginning of the script and another just before echoing the last couple of lines at the bottom of the page and producing something like the following on the bottom of the page; Page

Re: [PHP] Re: webserver response-time, how?

2004-08-04 Thread Tobias Grønlund
i meant time from i send the requestpacket to the server begins processing the request, but i think that i have found a sollution now. I've used microtime() to time how long it took to make a fsockopen() on the webpage... schouldnt the output then be showing the result of my problem?? Warren

RE: [PHP] Re: webserver response-time, how?

2004-08-04 Thread Vail, Warren
[mailto:[EMAIL PROTECTED] Sent: Wednesday, August 04, 2004 5:14 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Re: webserver response-time, how? i meant time from i send the requestpacket to the server begins processing the request, but i think that i have found a sollution now. I've used microtime

Re: [PHP] Re: webserver response-time, how?

2004-08-04 Thread Tobias Grønlund
To: [EMAIL PROTECTED] Subject: Re: [PHP] Re: webserver response-time, how? i meant time from i send the requestpacket to the server begins processing the request, but i think that i have found a sollution now. I've used microtime() to time how long it took to make a fsockopen() on the webpage

RE: [PHP] Re: webserver response-time, how?

2004-08-04 Thread Vail, Warren
coming close is the best you are going to be able to do. Good luck, Warren Vail -Original Message- From: Tobias Grønlund [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 04, 2004 5:38 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Re: webserver response-time, how? okey, i had a hunch