Simple Hit Counter Application in PHP

A Simple program which gives No. of visits to your Website.






<?php


if ( !(isset( $_COOKIE['cnt'] ) ) )
  {
      setcookie( "cnt",1, time()+3600);


      echo  "<h2 style='font-family:verdana'>Welcome ! It's first visit</h2>";
  }
  else
   {

      setcookie( "cnt",++$_COOKIE['cnt'], time()+3600);
   
     echo  "<h2 style='font-family:verdana'>Welcome ! It's " .$_COOKIE['cnt']." visit</h2>";
   }
?>

No comments:

Post a Comment

Thanks for visiting my Blog!

Have a Question ? Need Help in College Assignments, Need Code that is not available here? Just leave a comment & get your code instantly.

Tips to Enhance Your Blog