Re: [PHP] tracking visitors till registration?

2002-08-19 Thread Daren Cotter
php.ini config file --- Randy Johnson <[EMAIL PROTECTED]> wrote: > How do I surpress php warnings from being displayed > to the screen > > > Randy > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > _

Re: [PHP] tracking visitors till registration?

2002-08-19 Thread Rasmus Lerdorf
See your php.ini file. Specifically the display_errors directive. See also log_errors and error_log. -Rasmus On Mon, 19 Aug 2002, Randy Johnson wrote: > How do I surpress php warnings from being displayed to the screen > > > Randy > > > > -- > PHP General Mailing List (http://www.php.net/) >

Re: [PHP] tracking visitors till registration?

2002-08-19 Thread Randy Johnson
How do I surpress php warnings from being displayed to the screen Randy -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] tracking visitors till registration?

2002-08-19 Thread Daren Cotter
Justin is perfectly correct. Sessions are really the way to perform this task (sessions actually use cookies in most scenarios). However, if you need to track the user for longer than they will be at your site (i.e., they close the browser and come back a week later, like you said), it should be

Re: [PHP] tracking visitors till registration?

2002-08-19 Thread Justin French
on 20/08/02 7:01 AM, Andy ([EMAIL PROTECTED]) wrote: > Hi there, > > I am wondering if following scenario would be possible: > > - Create a unique referer id to make sure that the visitior has been refered > by a particular person. (e.g. server.com?ref=20) yes > - The visitor enters the site

[PHP] tracking visitors till registration?

2002-08-19 Thread Andy
Hi there, I am wondering if following scenario would be possible: - Create a unique referer id to make sure that the visitior has been refered by a particular person. (e.g. server.com?ref=20) - The visitor enters the site and browses around, but the ref=20 should not be stored inside the url, bu