|
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
<?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 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 |