Switch to full style
:read: Start PHP with us. Includes topics to help you in php
Post a reply

Use cookie to create page counter

Sun Oct 26, 2008 11:13 pm

Code:

<?php
if (!isset($_COOKIE['visits'])) $_COOKIE['visits'] = 0;
$visits = $_COOKIE['visits'] + 1;
setcookie('visits',$visits,time()+3600*24*365);
?>
<html>
<head>
<title> Title </title>
</head>
<body>
<?php
if ($visits > 1) {
  echo(
"This is visit number $visits.");
} else {
// First visit
  
echo('Welcome to my Website! Click here for a tour!');
}
?>
</body>
</html>




Post a reply
  Related Posts  to : Use cookie to create page counter
 Use cookie to create page counter     -  
 jsp page counter     -  
 File page counter in php     -  
 Create Web Page using Photoshop     -  
 Setting a Cookie Value in php     -  
 Cookie based login in php     -  
 Using Multiple Values for a Cookie in php     -  
 Image Scroller-scrollbar-LINE_UP,LINE_DOWN-PAGE-UP-PAGE-DOWN     -  
 Writing a Counter to any PORT     -  
 reset the list counter     -  

Topic Tags

PHP Cookies