Hello,
i need to figure out a way to pass the variable
$_SERVER['HTTP_REFERRER'] to another page.
Here's my situation without javascript. I could pass that variable very easy if i do target:_blank with my link. However, i need to set the widht and height of the new window, so i need javascript. However, with that, my
wont pass. its like i have to make a choice: do target:_blank and pass the variable or do a open browser window javascript without the variable passing?
Can i have both
(i dont know much about javascript but if $_SERVER['HTTP_REFERER'] means the same, great, if not, in php that gives you the url of the page that you came in from)
thank you in advance
i need to figure out a way to pass the variable
$_SERVER['HTTP_REFERRER'] to another page.
Here's my situation without javascript. I could pass that variable very easy if i do target:_blank with my link. However, i need to set the widht and height of the new window, so i need javascript. However, with that, my
PHP Code:
<?php echo $_SERVER['HTTP_REFERER'] ?>
Can i have both
(i dont know much about javascript but if $_SERVER['HTTP_REFERER'] means the same, great, if not, in php that gives you the url of the page that you came in from)
thank you in advance
Comment