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!