[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

the web page



Hey,

 

First of all, Werd to fuckinggoogleit, so many times on IRC someone asks a stupid question, and 15 people reply with Http://fuckinggoogleit.com

 

Anyway, I was reading the information page, and u said u wanted to add some kind of counter?

So I thought id send u this snippet of PHP that u throw before ur html header (or any point before u want it to display the amount of hits really but the top is a good place)

 

<?php

$hitfile = 'hits.txt';

$fp = fopen($hitfile, "r+");

$hits = fread($fp, 1024);

fclose($fp);

$hits = $hits + 1;

$fp = fopen($hitfile, "w+");

fwrite($fp, $hits);

?>

 

 

then where ever u want the amount of hits to be displayed just put in <?php echo $hits; ?>

 

u will need to create a hits.txt in the same directory and chmod it to be able to be written to.

And save ur index as index.php but it’s a hit counter, and it works nice and simple.

 

if u want any kind of web dev stuff done to fucking google it, drop me an email and im more than happy to help.

 

DarkNoise