<?php
ob_start();
session_start();
$counter_name = "index.txt";
// Check if a text file exists. If not create one and initialize it to zero.
if (!file_exists($counter_name)) {
$f = fopen($counter_name, "w");
fwrite($f,"0");
fclose($f);
}
// Read the current value of our counter file
$f = fopen($counter_name,"r");
$counterVal = fread($f, filesize($counter_name));
fclose($f);
// Has visitor been counted in this session?
// If not, increase counter value by one
if(!isset($_SESSION['hasVisited'])){
$_SESSION['hasVisited']="yes";
$counterVal++`enter code here`;
$f = fopen($counter_name, "w");
fwrite($f, $counterVal);
fclose($f);
}
?>
I am using this code to count the number of visitors on one page using sessions. But I want to keep page counter on all other pages as well. So when I copy and paste the code into other pages the value does not get incremented. It only gets incremented on first page but not on other page I visit. What is the possible solution?
I do this on my website by storing information in a database. It's more secure than using a txt file, so you should consider doing that. And you can use the IP along with SESSION to be more thorough with record keeping. Make a traffic logging file to include in your header file that will use the request URI, IP, session id/user id.
By using request URI you can put the one single traffic logging script on all pages to handle all the different web pages you want to track. I can add some code examples if you want.
Hope this helps you out!