I need the codes for the following
Total Hits
Total Users Online
User Ip
Date
+ Rep for anyone who can help
Thanks - Liam
Printable View
I need the codes for the following
Total Hits
Total Users Online
User Ip
Date
+ Rep for anyone who can help
Thanks - Liam
does the page support php? as its no use gieving u the php codes if it dosnt?
Yup page supports php.Quote:
Originally Posted by Mentor
chmod hits.txt to 777PHP Code:<?php
$viewss = file("hits.txt");
$views = $viewss[0]; $views++;
$fp = fopen("counter.txt", "w");
fwrite($fp, $views);
fclose($fp);
print $views;
?>
Thats now your hits code
There ip is
PHP Code:echo $_SERVER['REMOTE_ADDR'];
Thanks aload:)
Date:
PHP Code:<?php echo date("d,M,y"); ?>