Re: [PHP] POST_QUERY STRING without letting php to parse it.

2004-01-08 Thread Raditha Dissanayake
Hi, According to my understanding HTTP_RAW_POST data is populated only if PHP engine did not recognize the encoding of the post data. Since it recognizes www-url-encoded and multipart/form-data pretty well you are not likely to get much use out of it. However you can easily gain access to raw

Re: [PHP] POST_QUERY STRING without letting php to parse it.

2004-01-08 Thread nabil
It is working But i can not always control php.ini on the host ..!!! and i tried ini_set("always_populate_raw_post_data" , "1"); but not working , and i had to chanhe in my local php.ini ... Please Advice "Mike Migurski" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > >I want to ge

Re: [PHP] POST_QUERY STRING without letting php to parse it.

2004-01-07 Thread Mike Migurski
>I want to get the POSTED data as it is without letting php to parse it. You may be thinking of $HTTP_RAW_POST_DATA. You should set the always_populate_raw_post_data config option someplace if you want to use it reliably, though. See "configuration directives" in the manual. -

[PHP] POST_QUERY STRING without letting php to parse it.

2004-01-07 Thread nabil
Greeting ; I want to get the POSTED data as it is without letting php to parse it. for example: if i posted the following from a form : abc=string&abc=string2&ayz=string3 I want to get the both abc values ... I tried extract function and all global arrays and $_POST . PLEASE NOTE that I d