Hi all,
I am hopeful that there is a php variable that tells me which page posted the current page without using sessions or querystrings.
I am using sessions currently but just wondered.
Thanks,
Mat
Which page posted
Moderator: General Moderators
Re: Which page posted
$_SERVER['HTTP_REFERER'] is holding the refering page. You got to be a bir careful how you use it. Soon as you hit the browsers refresh button, $_SERVER['HTTP_REFERER'] will refer to the page you are currently on.
If it is realy important to be able to go back to the refering page or the refering page is needed for whatever important reason I would still use a session.
If it is realy important to be able to go back to the refering page or the refering page is needed for whatever important reason I would still use a session.
Re: Which page posted
thanks mate.