Re: [PHP] PHP analytics

2006-12-09 Thread Richard Lynch
There are a few zillion refinements to be done here, and you had better make sure the username you stuff into your $_SESSION is validated, but, really, it's not exactly rocket science to hack something up to know what the user clicked, once you force them to login... On Wed, December 6, 2006 5:4

Re: [PHP] PHP analytics

2006-12-06 Thread André Medeiros
Do those log GET params? On 12/6/06, Vincent DUPONT <[EMAIL PROTECTED]> wrote: You could look for Apache logs analysers, too vincent -Original Message- From: Rick. [mailto:[EMAIL PROTECTED] Sent: Wed 6/12/2006 12:48 To: php-general@lists.php.net Subject: [PHP] PHP analytics Hello

RE: [PHP] PHP analytics

2006-12-06 Thread Vincent DUPONT
You could look for Apache logs analysers, too vincent -Original Message- From: Rick. [mailto:[EMAIL PROTECTED] Sent: Wed 6/12/2006 12:48 To: php-general@lists.php.net Subject: [PHP] PHP analytics Hello I am new to php and I would like some guidance from those who have a bit more ex

Re: [PHP] PHP analytics

2006-12-06 Thread Jochem Maas
Rick. wrote: > Hello > > > > I am new to php and I would like some guidance from those who have a bit more > expereince with PHP > > > I will be attempting to do a bit of tracking and web analytics. Basically, > the user will login > and from there everything that he clicked will be recorde

Re: [PHP] PHP analytics

2006-12-06 Thread André Medeiros
Not really, it's instant now. You just have to have a google account. On 12/6/06, Edward Kay <[EMAIL PROTECTED]> wrote: What you describe is certainly possible, and many sites have this functionality. If you're just starting out however, look into Google Analytics. It gives you more info than y

RE: [PHP] PHP analytics

2006-12-06 Thread Edward Kay
What you describe is certainly possible, and many sites have this functionality. If you're just starting out however, look into Google Analytics. It gives you more info than you care to imagine and is free. It's also takes 2secs to install (except I think there's a waiting list to get your account

Re: [PHP] PHP analytics

2006-12-06 Thread André Medeiros
Storing the document that is being called and get paramaters on a DB is very simple You would have an include like $doc = $_SERVER['PHP_SELF']; $get_vars = serialize($_GET); mysql_query('INSERT INTO logs (page, vars) VALUES ("' . $doc . '", "' . addslashes($get_vars) . '")'); Of course you'd ne