[PHP-DB] Page Use

2003-06-23 Thread Tim Winters
Hello, I'm interested in setting up a system whereby I can track a users movements through a site. I particularly I am interested in recording both that the user actually hit the page but also the time he spent on that page. Is this possible using PHP and if so how? Thx Tim Winters

RE: [PHP-DB] Page Use

2003-06-23 Thread Peter Lovatt
To: 'PHP-DB' Subject: [PHP-DB] Page Use Hello, I'm interested in setting up a system whereby I can track a users movements through a site. I particularly I am interested in recording both that the user actually hit the page but also the time he spent on that page. Is this possible using PHP

RE: [PHP-DB] Page Use

2003-06-23 Thread Mike
- From: Tim Winters [mailto:[EMAIL PROTECTED] Sent: Monday, June 23, 2003 8:06 AM To: 'PHP-DB' Subject: [PHP-DB] Page Use Hello, I'm interested in setting up a system whereby I can track a users movements through a site. I particularly I am interested in recording both that the user actually hit

RE: [PHP-DB] Page Use

2003-06-23 Thread Matthew Horn
So yes, it's possible with PHP. Is it worthwhile? Eh, maybe. But just realize the overhead that you'll be putting on a busy site with a DB entry for EVERY page view - even for pages with no dynamic content (not to mention any pages that might require real DB querying). Why not use

Re: [PHP-DB] Page Use

2003-06-23 Thread Pierre-Alain Joye
Hello, something really good: http://www.phpopentracker.de/ hth pierre -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-DB] Page Use

2003-06-23 Thread Tim Winters
To: [EMAIL PROTECTED]; 'PHP-DB' Subject: RE: [PHP-DB] Page Use I'm sure an application like this has already been written, but here are some considerations if you'd like to build your own: -You need to start a session or have some other functionality that identifies each user uniquely as they browse your

RE: [PHP-DB] Page Use

2003-06-23 Thread Tim Winters
450 5500 Cell: 902 430 8498 Fax:: 902 484 7115 -Original Message- From: Pierre-Alain Joye [mailto:[EMAIL PROTECTED] Sent: June 23, 2003 10:12 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: [PHP-DB] Page Use Hello, something really good: http://www.phpopentracker.de/ hth

Re: [PHP-DB] Page Use

2003-06-23 Thread Pierre-Alain Joye
On Mon, 23 Jun 2003 10:33:59 -0300 Tim Winters [EMAIL PROTECTED] wrote: Interesting Pierre, Is this something you have ever used? I have tested it for a few weeks ago (and starting to translate the doc to fr ;). I use it in a current project. However be sure this is really something good and

RE: [PHP-DB] Page Use

2003-06-23 Thread Edward Peloke
PROTECTED] Sent: Monday, June 23, 2003 9:10 AM To: 'Mike'; 'PHP-DB' Subject: RE: [PHP-DB] Page Use Thanks Mike, You make some good points. From a volume point of view I don't think making the writes to the DB will have much effect as it's a low traffic site. I guess I'm going to have to do some