My code says:
<?
session_start();
require('html.php');
require('functions.php');
print $vuser;
printvars();
?>
When this page loads it reads all the functions in 'html.php' and 'functions.php'. It then prints a session variable I have defined on a previous page. When it runs 'printvars' (which was loaded via 'functions.php'), none of the sessions variables are available. If I call session_id from within the function it returns the correct SID, but none of the variables are there.
Any help would be wonderful.
thanks,
Matt