Hi!
I have a little problem concerning passing variables between different pages...
So, I have a contact-page, where visitors can send me tips on error in my pages. In this contact-page I need to echo the address of the reffering page (not using HTTP_REFERER though, since that doesn't work with all browsers).
To do this, I need to make a variable containing the url of the refering page, like this:
$ref_url = $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
But how can I send this variable ($ref_url) from the referring page to my contact-page..?
Also, it'd be very nice if this could be done without using session or any sort of form...
Thanks in advance / jek