Picture, if you will, a php file processing a form submitted using the POST method, this script now wants to include the results from another script which requires the same data.
Now it's easy to open up the other script with the fpoen command and pass the data using an encoded URL but how would I go about passing on the data using POST? i.e. I don't want to use the encoded URL cos the amount of data is too large.
anyone?