Anton Statutov wrote:
DOCUMENTATION> php://input is not available with enctype="multipart/form-data".

What I should do if I really need to get multipart data? I want to implement my own form-data parser with PHP5. Can I at least turn off the PHP's one to be able to use php://input with multipart?


PHP doesn't parse the data, it simply captures it in $_POST, $_GET (depending on the form type) and $_FILES if applicable.

--
Postgresql & php tutorials
http://www.designmagick.com/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to