View Full Version : Need the following codes
I need the codes for the following
Total Hits
Total Users Online
User Ip
Date
+ Rep for anyone who can help
Thanks - Liam
Mentor
01-11-2005, 08:19 PM
does the page support php? as its no use gieving u the php codes if it dosnt?
does the page support php? as its no use gieving u the php codes if it dosnt?
Yup page supports php.
Mentor
01-11-2005, 08:37 PM
<?php
$viewss = file("hits.txt");
$views = $viewss[0]; $views++;
$fp = fopen("counter.txt", "w");
fwrite($fp, $views);
fclose($fp);
print $views;
?>
chmod hits.txt to 777
Thats now your hits code
There ip is
echo $_SERVER['REMOTE_ADDR'];
splintercell!
01-11-2005, 09:52 PM
Date:
<?php echo date("d,M,y"); ?>
Want to hide these adverts? Register an account for free!
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.