Passing Large amount of data in PHP.

Posted by Simple on Stack Overflow See other posts from Stack Overflow or by Simple
Published on 2010-06-09T23:32:06Z Indexed on 2010/06/09 23:42 UTC
Read the original article Hit count: 124

Filed under:
|

I would like to know what is the best way to pass a large amount of XML data from one PHP script to another.

I have a script that reads in an XML feed of jobs. I would like to have the script display a list of the job titles as links. When the user clicks a link they would be taken to another page displaying the details for that job.

The job details are too large to send in the query string, and it seems poor style to start a session for data that isn't specific to that user.

Any ideas?

© Stack Overflow or respective owner

Related posts about php

Related posts about xml-serialization