Guest User

Untitled

a guest
Apr 27th, 2012
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. keep track of user page view using cookie php
  2. setcookie('visitcount',1+$_COOKIE['visitcount'],time()+60*60);
  3. $visitcount = $_COOKIE['visitcount'];
  4. print "Number of views: ".$visitcount;
  5.  
  6. setcookie('visitcount',1+$_COOKIE['visitcount'],time()+60*60);
Advertisement
Add Comment
Please, Sign In to add comment