View Single Post
Old 10-04-2004, 02:59 PM  
fuzebox
making it rain
 
fuzebox's Avatar
 
Industry Role:
Join Date: Oct 2003
Location: seattle
Posts: 22,308
You've got mad skills.

Code:
<?php
$NUMBER;

# retrieve counter if file exists
if(file_exists("hits.txt"))
{
    $FILE = fopen("hits.txt","r");
    if($NUMBER = fgets($FILE,999))
    { $NUMBER = trim($NUMBER); }
    fclose($FILE);
}

$FILE = fopen("hits.txt","w");
$NUMBER=$NUMBER + 1;
fwrite($FILE,$NUMBER);
fclose($FILE);

echo "<p>" . $NUMBER . "</p>";
?>
fuzebox is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote