Hi Chris-
I recently ran into this, too, when I migrated a bunch of PHP code from a Linux box to Windows/IIS.
Along with session_start(), I was able to pull in my variables like this, for example:
<?php
session_start();
$_SESSION['fullname'] = $_POST['fullname'];
?>
And then calling the session variable like this:
<?php echo $_SESSION['fullname']; ?>
Hope this helps!
-Gabe