/ Published in: PHP
A simple PHP application for counting how many views a page gets.
Expand |
Embed | Plain Text
<?php $_SESSION['views']=$_SESSION['views']+1; else $_SESSION['views']=1; ?>
Comments
Subscribe to comments
You need to login to post a comment.

This one works only for a single user, as a session is for one browser only.
dose not work on iweb ?