[PHP] Statistics

2004-09-02 Thread Daniel Schierbeck
I'm trying to develop a set of functions that can handle the statistics of a website. I want them to be as flexible as possible, and i want to be able to have several different views (day, week, month, year). For example if i wanted to know how many visitors, visits and page hits there was

Re: [PHP] Statistics

2004-09-02 Thread raditha dissanayake
Daniel Schierbeck wrote: I'm trying to develop a set of functions that can handle the statistics of a website. I want them to be as flexible as possible, and i want to be able to have several different views (day, week, month, year). For example if i wanted to know how many visitors, visits

Re: [PHP] Statistics

2004-09-02 Thread John Holmes
From: Daniel Schierbeck [EMAIL PROTECTED] Is there a simpler way of approaching this? Use an already written program that parses your web logs and already gives you this information? ---John Holmes... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Statistics

2004-09-02 Thread Daniel Schierbeck
John Holmes wrote: From: Daniel Schierbeck [EMAIL PROTECTED] Is there a simpler way of approaching this? Use an already written program that parses your web logs and already gives you this information? ---John Holmes... I feel like doing it myself :) -- Daniel Schierbeck -- PHP General Mailing

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

[PHP] Statistics function

2001-03-14 Thread Lauri Vain
Hello everybody, 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 itself? The reason that I'm asking this is I'm

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