POST variables come from a form (mostly). That's why they only get passed over one page. Using sessions is probably one of the easiest things (in theory) when using PHP.
Place this on every page that needs a session:
session_start();
Then you can either use the session*() functions that are provided with PHP, or do it the short way and use the $SESSION variable that is predefined.
Hope this helps!