I need the php code or a tut on how to make a hit thing like how many users are
online and stuff and how many hits today

I need the php code or a tut on how to make a hit thing like how many users are
online and stuff and how many hits today
a simple flat file one would be:
nd then create a file called counter.txt and CHMOD it to 777PHP Code:<?php
$viewss = file("counter.txt");
$views = $viewss[0]; $views++;
$fp = fopen("counter.txt", "w");
fwrite($fp, $views);
fclose($fp);
print $views;
?>
Chilimagik.net // Reviews, Band Biographies, News, Pics + Loads More!!
[Thybag.co.uk - Vive la revolutione]
i want users online and stuff aswel
All the stat things are on xenigma.net under php tutorials ;POriginally Posted by crana.c
i want users online and stuff aswel
Want to hide these adverts? Register an account for free!