So a form like this:
<form action="/appapi/checkout/" method="post" mimetype="text/xml" enctype="text/xml" name="form1">
<input type="file" name="xmlfile">
<br />
<input type="submit" name="Submit" value="Submit">
</form>
Will pass me a xml file to appapi/checkout/
How can I read this file? Or do I need to save it on my server before I can read it?
Like it has been done here: receive xml file via post in php
I tried to:
$url = 'php://input';
$xml = simplexml_load_file($url);
But wouldnt work out. How can i do this?
