Omar
|
| Posted: 03/04/2002, 6:19 PM |
|
Hey;
How to get the name of the domain or the url in a session when someone comes to your site from another site? examle, I am in http://codechaarge.com, I then click a link with in CC web that limk is to www.mywebsite.com how can I capture the link http://codechaarge.com?
|
|
|
 |
Brent
|
| Posted: 03/04/2002, 10:09 PM |
|
If you're using PHP you can try using the built in variable $HTTP_REFERER which
is described below.
$HTTP_REFERER
The address of the page (if any) which referred the browser to the current page. This is set by the
user's browser; not all browsers will set this.
|
|
|
 |
|