PDA

View Full Version : Need the following codes



Rou
01-11-2005, 07:58 PM
I need the codes for the following

Total Hits
Total Users Online
User Ip
Date

+ Rep for anyone who can help

Thanks - Liam

nets
01-11-2005, 08:18 PM
http://uk.php.net/date

Mentor
01-11-2005, 08:19 PM
does the page support php? as its no use gieving u the php codes if it dosnt?

Rou
01-11-2005, 08:24 PM
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'];

Rou
01-11-2005, 08:40 PM
Thanks aload:)

splintercell!
01-11-2005, 09:52 PM
Date:


<?php echo date("d,M,y"); ?>

Want to hide these adverts? Register an account for free!