//page1.php <?php     session_start();    $_SESSION['superhero'] = "batman"  ?> <a href="page2.php" title="">Go to the other page</a>    //page2.php <?php      session_start(); // this NEEDS TO BE AT THE TOP of the page before any output etc    echo $_SESSION['superhero'];  ?>

Read more of this post