Re: XForms: Howw to handle method="post" with php
"Tezza" <[email protected]>
| Newsgroups | gmane.comp.mozilla.devel.xml |
|---|---|
| Organization | http://groups.google.com |
| Message-ID | <[email protected]> |
Good tip Martin. Nils, I would recomend reading http://au2.php.net/wrappers.php note, - php://input won't work if the form was posted as multi-part. which could be an issue if the form does a file upload (not that you'd want to have to parse that from raw data yourself anyways). - it works with php 4.3.0 and above (out of the box) you can still access $HTTP_RAW_POST_DATA but you need to set a directive in the php.ini file for it to work - and it won't be default. It is also less efficient (apparently).