Reputation: 51680
I have a problem using simplexml_load_file and session vars in PHP.
So, I have 2 PHP files, one generates some XML and the other one reads it. The file that generates XML should read some $_SESSION vars, which had been set in the other, but it won't...
For instance, say the first file is something like:
FILE 1 (reads XML)
<?
session_start();
$_SESSION['test'] = 'test!!!';
echo '<b>In file 1</b><br />';
echo 'var = '.$_SESSION['test'].'<br />'; // This correctly outputs "test!!!"
echo '<b>Reading file 2</b><br />';
$xml = simplexml_load_file("http://www.someurl.com/2.php");
echo 'var = '.$xml['var']; // This does <b>NOT</b> output "test!!!"... why?
?>
FILE 2 (generates XML)
<?
header('Content-type:application/xml');
session_start();
echo '<?xml version="1.0" encoding="utf-8"?>';
echo '<test>';
echo '<var>'.$_SESSION['test'].'</var>';
echo '</test>';
?>
The strange thing is, if I open file 2 directly it DOES read $_SESSION["test"]
Things I already tried (and did not work)
Not calling session_start() in the second file
Calling session_write_close() before simplexml_load_file in the first file
Accessing the file using fsockopen instead of simplexml_load_file. This also returns an empty tag... so it's not an issue with simplexml_load_file...
I'm a bit out of ideas... can anyone help?
Thanks nico
Upvotes: 1
Views: 767
Reputation: 401162
From a user/browser point of view, the session is passed from page to page via a cookie that contains the session identifier.
A bit like this :
Here, you have two pages, but the session identifier is not passed from file 1 to file 2 -- which means file 2 doesn't even know there is an existing session.
In fact, you have two clients, here :
Upvotes: 2