Page View count in a session

ApocDen 0 Tallied Votes 1K Views Share

This will count number of page views in a session. Simple, to add on the page just add the code on the top of the page and make sure it is before any html.

<?php
session_start();
if(isset($_SESSION['view']))
{
    $_SESSION['view']=$_SESSION['view']+1;
}
else
{
    $_SESSION['view']=1;
}
echo "Page Views Count On This Session:".$_SESSION['view'];
?>
kyrilkong 0 Newbie Poster

This code looks cool :)
But it's not very useful to just track the views count on a particular session, isn't it? I thought it might be better to count the total number of views in total.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.