mrasla
02-23-2006, 05:29 PM
I want to find out what site a visitor has came from to my forum? Is there some php code I could add to my forum home template to get this information? I guess stored in a log file or something.:confused:
Thank you for visiting. This is our website archive. Please visit our main website by clicking the banner above. vBulletin FAQ is dedicated to helping the forum owner build, manage and profit from his vBulletin Forum vBulletin Web Hosting - Free skins and styles for your vBulletin - Search Engine Optimization |
|
|
|
|
Find referer to my forummrasla 02-23-2006, 05:29 PM I want to find out what site a visitor has came from to my forum? Is there some php code I could add to my forum home template to get this information? I guess stored in a log file or something.:confused: Taylor 02-25-2006, 10:21 AM Give this a try: <? $ref = $_SERVER['HTTP_REFERER']; $ref = explode("/", $ref); echo $ref[2]; ?> If using the $_SERVER variable, you can get the website that the visitor came from. It should help you to know which website is referring visitors to you! :D | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
|
EZ Archive Ads Plugin for vBulletin Copyright 2006 Computer Help Forum