View Single Post
Old 10-04-2004, 03:01 PM  
brand0n
been very busy
 
Join Date: Nov 2002
Location: the queen city
Posts: 26,983
Quote:
Originally posted by fuzebox
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>";
?>
do you think we are going to keep this layout once we release this site to the public? your sharp guy.
__________________
want to buy this spot for cheap? it is of course for sale. long term deals are always the best bet. brand0n/ at/ a o l dot commies.
brand0n is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote