| ★ wanayoo — archive 1999 http://www.phpbuilder.com/columns/sebastian19990331.php3 | Nouvelle recherche | Portail wanayoo |
|
|
|||
|
|
|
|
||
|
|
|
Where did they go today? Knowing where people leave to and more.Sebastian Moericke-Kreutz
Did you wonder where and how people leave off your site? With php3 it is easy to trace this. Sure, several solutions of redirect-cgi's exist, but why bother with another language when you can keep it straight to php3 and make it more comfortable? My setting for writing this from scratch was a site where I had multiple pages with identical links in a part of them, but I'd wanted to know the use of the external links in detail: Who left where from which page and when. So here is how it works: When you read the documentation about php3 in detail, you may have come across this kind of one-liner: <?php Header( "Location: http://www.php.net"); exit; ?> You find it in Section XIV. It uses a HTTP redirect command to make the users browser access a new location. This is a good example how simple things in PHP3 can be: We will expand it, so that we make a suitable tool for the curious ;). First we make targeting more flexible, it is the 'where'. This one is easy, because you just add a parameter to the URL of the redirector page. I'll call it <?php '$u_target' ?>. (u_ stands for URI/URL, this is a personal way to determine where the variable belongs to that I am using. Others: db_ is for database , p_ for page , f_ for function and so on.) Then we want to record from 'which' page the link was activated. Since the referrer-information is sometimes filtered out by proxies, browsers and firewalls, we will use the additional variable <?php '$u_referrer' ?> for this purpose. You can use simple keywords like 'homepage', the name of the page example.html or the full address "http://...". It doesn't really matter, but keywords are better to understand on first look. When you skip this parameter, <?php $HTTP_REFERER ?> is used automatically. Note that if it doesn't exist either, <?php '$u_referrer' ?> will be set to 'none'. We will determine the "who" by using server-variables. We'll take <?php $REMOTE_ADDR ?> address for this purpose, since Apache and IIS deliver it in nearly 90% of all installations ;). <?php $REMOTE_HOST ?> is better but since DNS-lookup is switched off sometimes, you'll have to try out on your server yourself. (Use <?php phpinfo() ?> for this purpose. It's tip I got from Tim and others which lead also to this script. Thanks ;) 'When' is easy: <?php time() ?> is all we need. Logging the information gathered to a database is the method of choice. Since the data-structure is simple and flat, you should be able to use any kind of solutions - even plain text files will do it. Since MySQL is nice for this job, we'll take it for our purpose. Since this article focuses on redirecting, I will keep the part of information exchange with the database brief. You'll find more information on this topic here in phpbuilder.com and on the web. Here is the SQL-Command for creating the table in MySQL:
# Definition
You can easily expand the table for additional parameters like Keyword for the link, User ID's and more. What follows is the code for the php3-Page: redir.php3
<?php
When you have set up the database and placed the page right you can use it in different ways:
First, you can use it for standard
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
Third: If you fear of getting 'copied' away with all of you links on your site, you can expand the script, so that the parameter '$u_refferer' is looked up in a separate database and replaced by an address. (Like the one in html: 1 is for www.slashdot.org, 2 is for www.phpbuilder.com, and so on) Finally: Mail me an other ideas you have! Tell me if you want this code expanded with user-id's, symbolic names for links and so on. I will put this script on an own webpage soon and if I have the time, I will enhance it. Sebastian
|
||
|
|
|
Sample Code | Columns | Mail Archive | Support | Get Started! | Links | Contribute!
Contact (non support questions) By viewing these pages you agree to the Legal Terms of Service.
Geocrawler.com | GoToCity.com | DirectriCity.com | PHPBuilder.com | The Des Moines City.net |