Well I havn't dont it yet, but I've just had an appiphany,
i think you should be able to pass variables through the session_register() function. just make sure you have a session_start(); at the top of all your pages 🙂.
but it should work like this.
$variable1 = "data stuff";
$variable2 = "more data stuff";
$ect = "even more crap";
session_register("variable1", "variable2", "ect");
then on the recieving page put:
session_start();
$variable = $_SESSION["variable1"];
and so on, it should work, but dont shoot me if it doesnt 🙂
oh and if your going to pass variables with
something.php?data1=data
to do more than one use the & character
something.php?data1=data&data2=data&data3=data
hope i helped
-=Levi=-