J-Thread
Full Member
Posts: 467 Reputation: 8
– / / –
Joined: Jul 2004
|
RE: Tiny winy PHP question :P
code: <?php
$filename = "count.txt";
$x = intval(file_get_contents($filename)) + 1;
$f = fopen($filename, "w");
fwrite($f,$x);
fclose($f);
echo $x;
?>
How about that?
This post was edited on 03-19-2006 at 04:09 PM by J-Thread.
|
|