Here is the code for simple web counter try and enjoy before run the code make a text file named counterlog.txt and make sure it is writeable to everyone
then write code below and save it with name of conuter.php
then in which page do u want to display counter include counter.php as under
<?php
include("./counter.php")
?>
this is ur simple web counter based on text file
--------------------------------------
<?php
$viewss = file("counterlog.txt");
$views = $viewss[0]; $views++;
$fp = fopen("counterlog.txt", "w");
fwrite($fp, $views);
fclose($fp);
print $views;
?>
|