Ive tried this on two servers and im still not seeing it just trying to
create a session and use session variables...
if everything is set up correctly, shouldnt the following work
to pass a value through the $_SESSION['foo'] variable?

page1.php
<?php
session_start();
$_SESSION['foo']='test';
header("Location: /sandbox/page2.php");
?>
page2.php
<?php
session_start();
if(!isset($_SESSION['foo']))
{
echo ' im not seein it.<br>';
} else
{
echo 'ah i see, its between the double colons ::'.$_SESSION['foo'].'::<br>';
}
?>