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
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
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
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
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
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
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
7 matches
Mail list logo