Key words: phpshow an example
session_start(); // the first line in the php page !!!
$_SESSION['info'] = "A page content";
In the second page
session_start(); // the first line in the php page !!!
echo $_SESSION['info'];
Will show:
"A page content";