What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » Using Awstats to make a hitcounter

Using Awstats to make a hitcounter
Author: Message:
Stigmata
Veteran Member
*****



Posts: 3520
Reputation: 45
20 / Other / Flag
Joined: Jul 2003
RE: Using Awstats to make a hitcounter
this works pefectly fine for me, and can go over 1000 :P

code:
<?PHP
    $file="hitscount.dat";
    $handle=fopen($file, "r+");
    $hits=fread($handle,filesize("$file"));
    $hits+=1;
    fclose($handle);
    $handle=fopen($file, "w");
    fwrite($handle, $hits);
    fclose($handle);
?>

just change hitcounter.dat to some filename and then run the page, the dat file should be created automaticly. but you will get a error on first run.
05-23-2005 08:52 AM
Profile PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Using Awstats to make a hitcounter - by user27089 on 05-22-2005 at 08:16 PM
RE: Using Awstats to make a hitcounter - by saralk on 05-22-2005 at 08:23 PM
RE: Using Awstats to make a hitcounter - by RaceProUK on 05-22-2005 at 08:32 PM
RE: Using Awstats to make a hitcounter - by saralk on 05-22-2005 at 08:33 PM
RE: Using Awstats to make a hitcounter - by RaceProUK on 05-22-2005 at 08:36 PM
RE: Using Awstats to make a hitcounter - by saralk on 05-22-2005 at 08:38 PM
RE: Using Awstats to make a hitcounter - by Eljay on 05-22-2005 at 08:39 PM
RE: Using Awstats to make a hitcounter - by Veggie on 05-22-2005 at 08:53 PM
RE: Using Awstats to make a hitcounter - by RaceProUK on 05-23-2005 at 08:33 AM
RE: Using Awstats to make a hitcounter - by Eljay on 05-23-2005 at 08:36 AM
RE: Using Awstats to make a hitcounter - by Stigmata on 05-23-2005 at 08:52 AM
RE: Using Awstats to make a hitcounter - by -dt- on 05-23-2005 at 01:20 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On