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
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
>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.
-
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
4 matches
Mail list logo