I notice that I lose the $_SERVER['HTTP_REFERER'] when I use the Header() redirect method.
Example:
<?
//page1.php
header('Location: page2.php');
?>
<?
// page2.php
echo $_SERVER['HTTP_REFERER'];
?>
The $_SERVER['HTTP_REFERER'] is blank.
Does anyone know if there is a way to use the header() redirect method and still keep/log the referring url?
thanks