vote up 1 vote down star

I want a certain action to happen when a user has visited X pages of a site

Do I have to store the counter externally (in a txt file or db)?

I can't think of a way to set the counter to 0, then increment it each page load. The counter would always get reset to 0, or am I missing something obvious?

flag

77% accept rate
You could do the same thing using the $_COOKIES superglobal, but I would recommend $_SESSION for accuracy and reliability. us3.php.net/manual/en/… – tj111 May 15 at 16:41

6 Answers

vote up 10 vote down check

It would be pretty simple to just use $_SESSION data to store how many pages an individual has viewed.

$_SESSION['pageviews'] = ($_SESSION['pageviews']) ? $_SESSION['pageviews'] + 1 : 1;
link|flag
This doesn't seem to work, pageviews always stays at 1 – htxt May 14 at 19:09
htxt: make sure you're calling session_start() before attempting to use $_SESSION – Frank Farmer May 14 at 19:14
htxt: session_start() must be call before any data outputed. Data may be header sent from server, some echo or print in your code. – Luc M May 14 at 20:24
Could you do something similar with cookies? I'm using Wordpress, which seems to be eating my session variables – htxt May 14 at 22:10
vote up -2 vote down

you would use an if statement to check if it is already set;

if( isset($count) )
{
   $count = $count + 1;
}
else
{
   $count = 1;
}

You can also use the get method to put the count in the URL so that you dont have to write the count to a file or database.

link|flag
Putting the count in the URL doesn't work if the user hits the back button or opens multiple tabs, and causes duplicate content issues for search-engine purposes. – Frank Farmer May 14 at 18:54
True. I didnt think about that. – Josh Curren May 14 at 19:04
vote up 0 vote down

You can start a session when the user first gets to your page, and then increment the value each time the user reloads/visits subpages. Another way to do it, is to have a hidden field on every page, and retrieve its value, increment it and post it to the new page.

<input type="hidden" value="2" id="blabla" />
link|flag
2  
Your second method only works if every click is a POST, and breaks if the user reloads a page, opens multiple pages in separate tabs, hits the back button, etc. – Frank Farmer May 14 at 18:53
Yep, that is true. :P – Arve Systad May 14 at 19:03
vote up 0 vote down

The short answer is yes, you do have to save this externally because php (by default) has a zero memory persistence policy. This means basically that once your php script has run there's nothing left in memory.

For a low traffic site you might want to think about a simple txt file where you read, increment and write. For a higher traffic site a very simple mysql table might work.

link|flag
vote up 0 vote down

Do you already have a way of determining who a user is (like a username & password), even if they leave the site and come back another day? Or are you just interested in tracking the number of pages a visitor sees, and doing something special on the xth page viewed.

If it's the second, you already have a session variable where you can store the counter.

$_SESSION['views'] = $_SESSION['views'] + 1
if($_SESSION['views'] == x) ...
link|flag
vote up 0 vote down

The simplest method would be to use PHP's session storage.

session_start();
@$_SESSION['pagecount']++;

PHP automatically sends the user a session cookie, and transparently stores the content of $_SESSION in a flat file associated with this cookie. You don't really need to roll your own solution for this problem.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.