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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.