include("hits.php"); if($lastIP!==$_SERVER['REMOTE_ADDR']){ $myHits++; } $filename = "hits.php"; $somecontent = "\n$"."myHits = ".$myHits.";\n$"."lastIP=\"".$_SERVER['REMOTE_ADDR']."\";\n?>\n"; // Let's make sure the file exists and is writable first. if (is_writable($filename)) { // In our example we're opening $filename in append mode. // The file pointer is at the bottom of the file hence // that's where $somecontent will go when we fwrite() it. if (!$handle = fopen($filename, "w")) { echo "Cannot open file ($filename)"; exit; } // Write $somecontent to our opened file. if (fwrite($handle, $somecontent) === FALSE) { echo "Cannot write to file ($filename)"; exit; } //echo "Success, wrote ($somecontent) to file ($filename)"; fclose($handle); } else { echo "The file $filename is not writable"; } ?>
|
||||||||||||
echo($myHits); ?> visits