Hi Jeremy,
You can do this:
Code:
<?php
session_start();
print(session_id());
?>
That gives you the unique session id. If you want to store variables, you call:
Code:
<?php $_SESSION['message'] = 'Hello World'; ?>
which you can then pull out again with:
Code:
<?= $_SESSION['message']; ?>
Just remember to call session_start(); before you start playing with it.
Hope that helps.
Matthew