how to pass variable from one page to another page without the use of form or url.
e.g: i have a variable
in get.php file
and i need to pass the $referer value to click.php , then how to do it?
e.g: i have a variable
HTML Code:
$referer= 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
and i need to pass the $referer value to click.php , then how to do it?
Comment