[PHP] correctly reading binary data from http post

2006-09-15 Thread Marek 'MMx' Ludha
the first zero byte). Is there a way to access all of the binary post data correctly? Thanks in advance for any advice. -- Marek 'MMx' Ludha -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] correctly reading binary data from http post

2006-09-15 Thread Marek 'MMx' Ludha
As I read through my first email again I see I didn't write clearly what I intended, sorry for this. I already have an application that sends binary data with requests like the one mentioned before. Now I need to parse those requests using PHP. Since the content-type is multipart/form-data, neithe

[PHP] reading urlencoded data from POST

2006-09-22 Thread Marek 'MMx' Ludha
put myself? Thanks in advance for any response. -- Marek 'MMx' Ludha -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] reading urlencoded data from POST

2006-09-23 Thread Marek 'MMx' Ludha
miss something? -- Marek 'MMx' Ludha On 9/23/06, Richard Lynch <[EMAIL PROTECTED]> wrote: Search php.net for RAW_HTTP_POST or somesuch. It's there for ya. -- Like Music? http://l-i-e.com/artists.htm -- PHP General Mailing List (http://www.php.net/) To uns

[PHP] Re: reading urlencoded data from POST

2006-09-25 Thread Marek &#x27;MMx&#x27; Ludha
If anyone else have the same problem, it is enough to turn off the magic quotes. -- Marek 'MMx' Ludha On 9/22/06, Marek 'MMx' Ludha <[EMAIL PROTECTED]> wrote: Hi. I need to read urlencoded data from POST request. So far I have tried $_POST['name'], but