log_user.php
session_start();
$_SESSION["user"] = "George";
header("location: next_page.php");
next_page.php
session_start();
echo $_SESSION["user"]." likes spicy chicken.";
Just start the session, then set the session var. It will be set for the rest of the session. Of course, I'm leaving out all sorts of error checking etc..., but this is the basic idea of a session var.