![]() |
Web Development Information |
|
|
Track Your Visitors, Using PHP
There are many different traffic analysis tools, ranging from simple counters to complete traffic analyzers. Although there are some free ones, most of them come with a price tag. Why not do it yourself? With PHP, you can easily create a log file within minutes. In this article I will show you how! Getting the information The most important part is getting the information from your visitor. Thankfully, this is extremely easy to do in PHP (or any other scripting language for that matter). PHP has a special global variable called $_SERVER which contains several environment variables, including information about your visitor. To get all the information you want, simply use the following code: // Getting the information $ipaddress = $_SERVER['REMOTE_ADDR']; $page = "http://{$_SERVER['HTTP_HOST']}{$_SERVER['PHP_SELF']}"; $page .= iif(!empty($_SERVER['QUERY_STRING']), "?{$_SERVER['QUERY_STRING']}", ""); $referrer = $_SERVER['HTTP_REFERER']; $datetime = mktime(); $useragent = $_SERVER['HTTP_USER_AGENT']; $remotehost = @getHostByAddr($ipaddress); As you can see the majority of information comes from the $_SERVER variable. The mktime() (http://nl2.php.net/mktime) and getHostByAddr() (http://nl2.php.net/manual/en/function.gethostbyaddr.php) functions are used to get additional information about the visitor. Note: I used a function in the above example called iif(). You can get this function at http://www.phpit.net/code/iif-function. Logging the information Now that you have all the information you need, it must be written to a log file so you can later look at it, and create useful graphs and charts. To do this you need a few simple PHP function, like fopen (http://www.php.net/fopen) and fwrite (http://www.php.net/fwrite). The below code will first create a complete line out of all the information. Then it will open the log file in "Append" mode, and if it doesn't exist yet, create it. If no errors have occurred, it will write the new logline to the log file, at the bottom, and finally close the log file again. // Create log line $logline = $ipaddress . '|' . $referrer . '|' . $datetime . '|' . $useragent . '|' . $remotehost . '|' . $page . ""; // Write to log file: $logfile = '/some/path/to/your/logfile.txt'; // Open the log file in "Append" mode if (!$handle = fopen($logfile, 'a+')) { die("Failed to open log file"); } // Write $logline to our logfile. if (fwrite($handle, $logline) === FALSE) { die("Failed to write to log file"); } fclose($handle); Now you've got a fully function logging module. To start tracking visitors on your website simply include the logging module into your pages with the include() function (http://www.php.net/include): include ('log.php'); Okay, now I want to view my log file After a while you'll probably want to view your log file. You can easily do so by simply using a standard text editor (like Notepad on Windows) to open the log file, but this is far from desired, because it's in a hard-to-read format. Let's use PHP to generate useful overviews for is. The first thing that needs to be done is get the contents from the log file in a variable, like so: // Open log file $logfile = "/some/path/to/your/logfile.txt"; if (file_exists($logfile)) { $handle = fopen($logfile, "r"); $log = fread($handle, filesize($logfile)); fclose($handle); } else { die ("The log file doesn't exist!"); } Now that the log file is in a variable, it's best if each logline is in a separate variable. We can do this using the explode() function (http://www.php.net/explode), like so: // Seperate each logline $log = explode("", trim($log)); After that it may be useful to get each part of each logline in a separate variable. This can be done by looping through each logline, and using explode again: // Seperate each part in each logline for ($i = 0; $i < count($log); $i++) { $log[$i] = trim($log[$i]); $log[$i] = explode('|', $log[$i]); } Now the complete log file has been parsed, and we're ready to start generating some interesting stuff. The first thing that is very easy to do is getting the number of pageviews. Simply use count() (http://www.phpit.net/count) on the $log array, and there you have it; echo count($log) . " people have visited this website."; You can also generate a complete overview of your log file, using a simple foreach loop and tables. For example: // Show a table of the logfile echo ''; echo 'IP Address'; echo 'Referrer'; echo 'Date'; echo 'Useragent'; echo 'Remote Host'; foreach ($log as $logline) { echo ' | ||||
| ' . $logline['0'] . ' | ';' . urldecode($logline['1']) . ' | ';' . date('d/m/Y', $logline['2']) . ' | ';' . $logline['3'] . ' | ';' . $logline['4'] . ' | ';
Software Engineer (Web Development) Seattle Post Intelligencer - DatStat Inc. provides Online Survey and Research Management Systems to healthcare, social science, education, government, and enterprise business ... |
Leading Web Development Firm Rockfish Interactive Selects Internap ... FOXBusiness - "Rockfish Interactive's impressive customer base reflects the firm's great achievements in the Web-development space," said Tim Sullivan, chief technology ... |
Web Design Company in UK Offers Outsourced Web Development and ... The Open Press (press release) - (OPENPRESS) May 9, 2008 -- Kronik Media, the London based web design company are known for the value of their web development services for businesses. ... |
Web Applications Developer Seattle Post Intelligencer - Ability to concurrently support multiple web development projects from conception to deployment while meeting individual project cost, schedule, ... |
Rich Web development: Is the browser doomed? InfoWorld, CA - By Neil McAllister Since its inception, the Web has been synonymous with the browser. Pundits hailed NCSA Mosaic as "the killer app of the Internet" in 1993 ... |
![]() Today's Zaman | [STARTING UP IN TURKEY] Sports in Turkey Today's Zaman, Turkey - As summer inexorably approaches in Turkey, you might find yourself in the mood for some sports. But finding the right activity and an appropriate location ... |
Arrival of technologically advanced web development company ‘Spinx' PR-Inside.com (Pressemitteilung), Austria - 2008-05-05 09:28:57 - Based in Los Angeles, Spinx provides professional website design and web development services to clients in the LA area, Orange County ... |
New tool could make web development simpler BizReport - If you've checked in with other web development companies, you know this is quite a bit quicker than other options. Here is how it works: developers begin ... |
CodeGear offers drag-and-drop web development ZDNet UK, UK - ... PHP debugging options sit alongside error insight and source-code formatting features to reduce the potential for bug creation in web development. ... |
Intuit Web development software launches in beta Bizjournals.com, NC - Mountain View-based Intuit (NASDAQ:INTU) said QuickBase is designed to let developers and independent software vendors "easily design, deploy and market ... |
| home | site map |
| © 2006 Webhosting-Service.com - All Rights reserved. - GetWeb Media Webdesign Muenchen |