/ Published in: PHP
A simple PHP application for counting how many views a page gets.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php $_SESSION['views']=$_SESSION['views']+1; else $_SESSION['views']=1; echo "Page View Count = ". $_SESSION['views']; ?>