I'm trying to make another simple thing like the simple mailer but a simple page counter. I want the counter to write the number with the users ip address and computer information. I have this code but for some reason it has "Resource ID #3." I dont know where it's getting the Resource ID # from or the 3 the file was set to 0. This is my code thanks for any help you can offer here.
PHP Code:<?php
$user = $_SERVER['REMOTE_ADDR'];
$computer = $_SERVER["HTTP_USER_AGENT"];
$count = "hit.txt";
$value = fopen($count, "r+");
$entervalue = fread($value, 999999);
$entervalue = entervalue + 1;
fwrite($value, $value);
fclose($value);
$hitsfile = "log.txt";
$gethits = fopen($hitsfile, "r+");
$page = $value . ". " . $user . " " . $computer . "\n";
echo $page;
fwrite($gethits, $page);
fclose($gethits);
?>
