View Single Post
  #2 (permalink)  
Old 05-09-2007, 07:32 PM
holyhttp holyhttp is offline
WebProWorld Member
 

Join Date: Jul 2006
Location: Oakland, CA
Posts: 45
holyhttp RepRank 0
Default

All your links lead to the same page with no way of distinguishing them. Since it's a PHP page and you want to track the popularity of each link, my suggestion would be to append a query string that would do the trick.
For instance http://www.innerwestmassage.com.au/i...?sb=Abbotsford
will let you know that "Abbotsford" was clicked.
$_GET['sb'] is the global variable you can use for your tracking.

If you do not want the "?" then you can use the mod_rewrite and have a link
http://www.innerwestmassage.com.au/i...Abbotsford.php[/i]
Reply With Quote