I have a php file that generates XML.
I have an xml parsing engine.
The php file generates session/cookie data used to authenticate a user. But in order to get the content displayed, I have to go:
PHP.XML -> Parse -> XML Parser -> Browser
Right now when I do this the XML Parser requests the PHP.XML page via an external link to get the parsed content (using get_file_contents()) and then continues processing. Doing this makes the session data from PHP.XML disappear into lala land though.
Any ideas on how to resolve this issue, or pass through the session data?