nahla123 Posted May 1, 2008 Share Posted May 1, 2008 hi i need to view number of users entered my site , but i don't know how could any one help? Link to comment https://forums.phpfreaks.com/topic/103700-number-of-site-visitors/ Share on other sites More sharing options...
Rohan Shenoy Posted May 1, 2008 Share Posted May 1, 2008 I don't know if this is a PHP question but doesn't your hosting provider give you applications like AWstats, webalizer, etc? Link to comment https://forums.phpfreaks.com/topic/103700-number-of-site-visitors/#findComment-530928 Share on other sites More sharing options...
peranha Posted May 1, 2008 Share Posted May 1, 2008 This is what I use to log visitors on a page visit. It will go on all pages, if you just wanted to log certain pages, you will just put it on certain pages. You will need to create a new table in your mysql database if that is what you are using, but this should get you started. <?php $visitURL = $_SERVER["PHP_SELF"]; $IPnumber = getenv("REMOTE_ADDR"); $Browser = $_SERVER["HTTP_USER_AGENT"]; $date = (date ("Y-m-d")); $time = (date ("H:i:s")); // open connection $connection = mysql_connect($server, $user, $pass) or die ("Unable to connect!"); // select database mysql_select_db($db) or die ("Unable to select database!"); // create query $query = "INSERT INTO page_vis (uservis, pagevis, ipadd, userbrows, date, time) VALUES ('$_SESSION[username]', '{$visitURL}', '{$IPnumber}', '{$Browser}', '{$date}', '{$time}')"; // execute query $result = mysql_query($query) or die ("Error in query: $query. ".mysql_error()); // close connection mysql_close($connection); ?> Link to comment https://forums.phpfreaks.com/topic/103700-number-of-site-visitors/#findComment-530989 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.