How would I make an Invisible counter?
Can I make it so that it counts the hits on the home page and displays the hits on another page like hits.htm for example.
I also want to add where the viewer came from. Any help would be great.
![]() | It appears you have not yet registered with DEVPPL. To register please click here... (it's fast, easy and free!) |

|
|
|
|
Moderator: Malcolm

<?php
$filename = "counters/countername.txt";
if(!is_file($filename)){
touch($filename);
}
$fp=fopen($filename,"r");
$count=fgets($fp,1024);
fclose($fp);
$fw=fopen("$filename","w");
$cnew=$count+1;
$countnew=fputs($fw,$count+1);
fclose($fw);
?>


Users browsing this forum: No registered users and 1 guest