Skip to main content

One More Use of Web Cookies

One More Use of Web Cookies

Ok, so we were discussing about Cookies in the last post, continuing the discussion today we’ll see one more example of where cookie is almost irreplaceable by any other method.

If you remember the post Creating a Simple Visitor Counter in PHP, although we named it ‘Visitor Counter’, what it actually counted was the number of times a page was requested. So, for example one person can request a page ten times and counter would show ten but actually the number of visitor id ONE. Ten is the number of page views.

Now you may have got what I’m up to today! Yeah we’ll employ cookies to track whether consecutive page requests came form the same visitor or not. If it is then another counter for number of page views will be incremented instead.

We cannot use Session Variables as they by default last only until the session is over. We’ll make the cookie expire after twenty four hour or one day period after that again the first request by a previously visited visitor would rather be counted as a visit and not a page view.

We’re taking the time of twenty four hours as most counters do the same, counting the same visitor as again unique after that time.

To make the counting process more clear, let’s take an example. If I request a website with our counter on, the first time both ‘visitors’ and ‘pageviews’ (we’ll have two counters) would increment. No if I make consecutive requests to the pages, only the ‘pageviews’ counter would increment. Again after 24-hours (cookie expiry, if I request the site again, both the counters would again increment (since I’d be unique for that time) and the process repeats.

Below is the code with enough comments to make the additional part very clear, you can read Creating a Simple Visitor Counter in PHP to see how to integrate this to existing sites.

<?php
/* 
Script: Visitor Counter with Cookies
Filename: counter.php
Date: 4-Jun-08 
Copyright 2008 Arvind Gupta 
http://learning-computer-programming.blogspot.com/ 

Use: Include this file in the web page (PHP) you want to have the Counter on.
     Call 'showCounter();' to show the counter.

You are free to modify, change, publish or do whatever with this script 
as long as this note is intact. Thank You! 
*/ 

//function
function showCounter()
{
    
//open the file in read & write mode
    
$fp=fopen("counter.txt","r+");
    
//fetch data
    //there will be two data in the file
    //first the number of visitors
    //and second pageviews
    
$data=fgets($fp,20);
    
    
//data will be seperated with a ' ' space
    //so breaking it into two seperate values
    
$data=explode(' ',$data);
    
    
//have the sepearte values in variables
    
$visitors=(int)$data[0];
    
$pageloads=(int)$data[1];;
    
    
//if NOT a unique visitor
    
if($_COOKIE['unique']=='no')
        
//increment PAGEVIEWS
        
$pageloads++;
    else
//if first tine visitor (unique in 24 hours)
        
{
            
//increment both VISITORS and PAGEVIEWS
            
$visitors++;
            
$pageloads++;
            
            
//set cookie, because visitor is not unique
            //from now on till 24 hours
            
            //first calculate the expiry time of the cookie
            //mktime generates current time in UNIX time format
            //(in seconds) we add 24*60*60 (no. of seconds in 24 hours)
            //to that
            
$expiry=mktime()+24*60*60;
            
setcookie('unique','no',$expire);
        }
    
    
//seek to the start of file
    
fseek($fp,0);
    
    
//write the new value
    //in the format we have used
    
fputs($fp,$visitors.' '.$pageloads);
    
    
fclose($fp);

    
//printf function is used to pad the 
    //pageload value, to make it look
    //good
    
return (printf("Visitors: <h1><span style=\"color: #fff; background: #000;\">%010d</span></h1>Pageviews:<h1><span style=\"color: #fff; background: #000;\">%010d</span></h1>",$visitors,$pageloads));
}
?>

Previous Posts:

Popular posts from this blog

Fix For Toshiba Satellite "RTC Battery is Low" Error (with Pictures)

RTC Battery is Low Error on a Toshiba Satellite laptop "RTC Battery is Low..." An error message flashing while you try to boot your laptop is enough to panic many people. But worry not! "RTC Battery" stands for Real-Time Clock battery which almost all laptops and PCs have on their motherboard to power the clock and sometimes to also keep the CMOS settings from getting erased while the system is switched off.  It is not uncommon for these batteries to last for years before requiring a replacement as the clock consumes very less power. And contrary to what some people tell you - they are not rechargeable or getting charged while your computer or laptop is running. In this article, we'll learn everything about RTC batteries and how to fix the error on your Toshiba Satellite laptop. What is an RTC Battery? RTC or CMOS batteries are small coin-shaped lithium batteries with a 3-volts output. Most laptops use

The Best Way(s) to Comment out PHP/HTML Code

PHP supports various styles of comments. Please check the following example: <?php // Single line comment code (); # Single line Comment code2 (); /* Multi Line comment code(); The code inside doesn't run */ // /* This doesn NOT start a multi-line comment block /* Multi line comment block The following line still ends the multi-line comment block //*/ The " # " comment style, though, is rarely used. Do note, in the example, that anything (even a multi-block comment /* ) after a " // " or " # " is a comment, and /* */ around any single-line comment overrides it. This information will come in handy when we learn about some neat tricks next. Comment out PHP Code Blocks Check the following code <?php //* Toggle line if ( 1 ) {      // } else {      // } //*/ //* Toggle line if ( 2 ) {      // } else {      // } //*/ Now see how easy it is to toggle a part of PHP code by just removing or adding a single " / " from th

Introduction to Operator Overloading in C++

a1 = a2 + a3; The above operation is valid, as you know if a1, a2 and a3 are instances of in-built Data Types . But what if those are, say objects of a Class ; is the operation valid? Yes, it is, if you overload the ‘+’ Operator in the class, to which a1, a2 and a3 belong. Operator overloading is used to give special meaning to the commonly used operators (such as +, -, * etc.) with respect to a class. By overloading operators, we can control or define how an operator should operate on data with respect to a class. Operators are overloaded in C++ by creating operator functions either as a member or a s a Friend Function of a class. Since creating member operator functions are easier, we’ll be using that method in this article. As I said operator functions are declared using the following general form: ret-type operator#(arg-list); and then defining it as a normal member function. Here, ret-type is commonly the name of the class itself as the ope