README.md

December 5, 2022 ยท View on GitHub

A Simple Hit Counter

Description

This is just a simple hits counter that will display the following:

hits: 345

or whatever the file says

chmod "counter.txt" to 0777 for this to work

More Info

Submitted On
ByJeff Cook/Moab Software
LevelBeginner
User Rating4.5 (36 globes from 8 users)
CompatibilityPHP 3.0, PHP 4.0
CategoryInternet/ Browsers/ HTML
WorldPHP
Archive File

Source Code

<?php
$file="counter.txt";
$handle=fopen($file, "r+");
$hits=fread($handle,filesize("$file"));
$hits+=1;
fclose($handle);
echo "$hits";
$handle=fopen($file, "w");
fwrite($handle, $hits);
fclose($handle);
 ?>