PROG 6

6. Write a PHP program to keep track of the number of visitors visiting the web page and to display this count of visitors, with proper headings.

program6.php

<?php
print "<h3> REFRESH PAGE </h3>"; $name="counter.txt"; $file = fopen($name,"r"); $hits= fscanf($file,"%d"); fclose($file);

$hits[0]++; $file = fopen($name,"w"); fprintf($file,"%d",$hits[0]); fclose($file);

print "Total number of views: ".$hits[0];
?>

Comments

Popular posts from this blog

PROG 7

PROG 2