How do i get the refering page of a visitor?
Cheers Tom
echo $_SERVER['HTTP_REFERER'];
or
echo $GLOBALS['HTTP_REFERER'];
or from the script level: echo $HTTP_REFERER;
..not nearly as nice though since it wont work everywhere.