Jump to content

number of site visitors


nahla123

Recommended Posts

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);
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.