I am having a problem where my session variables are not available to some included files, but they are to others. I have been able to find no pattern or logic in this, some files work, some don't
Example:
Here is a code fragment that requires a file...
echo "<p>Session Id: ".session_id();
require("http://dallypost.com/session_variables.php");
echo "<p>Session Id: ".session_id();
Here is session_variables.php...
<?php
echo "<p>Session Id: ".session_id();
?>
And here is the result...
Session Id: 4473c541c097958cf64b6920e61ab46c
Session Id:
Session Id: 4473c541c097958cf64b6920e61ab46c
I am stumped and could really use some help
Thanks
Lance Earl