page1.php <?php session_start(); $_SESSION['foo'] = "bar"; ?> PHP: page2.php <?php session_start(); echo $_SESSION['foo']; ?> PHP: that's pretty much the basis of it. for further reading, check out http://www.phpexamples.net/content/view/17/