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?
 it depends on how you get from page one to page two. Via link? or do you use redirection? ... the best way would be with sessions 



							
						
Comment