Create a session and pass the id along the URL
<?
session_register("abs" , "sdf");
?>
when you are sending the user to next page ,
add the session id in the url
http://abc.com?<? SID ?>
Then in next page use
<?
session_start();
?>
all the variables that you registerd in session_register function will be available to next page