I need to display certain content if the user gets to the page from a particular page. Not sure if I should be using
$_SERVER['REQUEST_URI']
or
$_SERVER['HTTP_REFERER']
if (ereg("/myurlid/",$_SERVER['REQUEST_URI'])) {
I assume something lik this should be