Worn
Fedora.com
![[Banner Image]](images/homebanner.gif)
![[Home]](images/bthome.gif)
![[Forums]](images/jacqui.gif)
![[Draw Poker]](images/BTPoker.gif)
![[Photo Album]](images/PhotAlbm.gif)
![[Loan Calculator]](images/LoanCalc.gif)
![[Feedback]](images/btfeed.gif)
![[Search]](images/btsearch.gif)
Welcome!
![[ File Dump ]](images/fedora.gif)
There are no hats here....
Copyright © 2002 WornFedora.com
Last modified: May 20, 2002
// JRMOD: php Hitcounter
$datafile="counter/HomePage.dat";
$initialvalue = 1;
$hitcount = 0;
if (!file_exists($datafile)) {
$file = fopen($datafile,"w+");
fwrite ($file,$initialvalue);
fclose ($file);
}
else {
$file = fopen($datafile,"r+");
$hitcount = fread($file,filesize($datafile));
fclose ($file);
};
$hitcount++;
$file = fopen($datafile,"w+");
fwrite ($file,$hitcount);
?>