Re: [PHP] handling multipart form-data

2006-10-24 Thread Anton Statutov
Richard Lynch wrote: I think you want that HTTP_RAW_POST_DATA setting thingie that's in the manual... I tried HTTP_RAW_POST_DATA with same result as php://input did. When form enctype is "url-form-encoded" they both works fine, but when enctype is "multipart/form-data" they both are empty. I n

Re: [PHP] handling multipart form-data

2006-10-23 Thread Richard Lynch
On Fri, October 20, 2006 9:28 am, 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

Re: [PHP] handling multipart form-data

2006-10-22 Thread Chris
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 multip