Hi,
$HTTP_RAW_POST_DATA is an array...
with echo you'll only get "array"..

To get something into $HTTP_RAW_POST_DATA, you need to "submit" your form
before...

Your script will only display something if you post the form before.

Regards,
P.E. Baroiller


"John W. Holmes" <[EMAIL PROTECTED]> a écrit dans le message de
news:[EMAIL PROTECTED]
> Balazs Halasy wrote:
> > I need to have the contents of $HTTP_RAW_POST_DATA because of
> > non-regular uploads (from browser to my home-made WevDAV server
implementation
> > (done in PHP)). However, no matter what I
> > do, it is always NULL. I guess the following script should return
> > SOMETHING in $HTTP_RAW_POST DATA if "always_populate_raw_post_data = On"
is
> > added to the php.ini file (and yes, I've restarted apache :-)... so, why
> > is it empty and how can I get the RAW post data? My PHP version is
4.3.2.
>
> Is register globals ON or OFF? Either way, maybe try
> $_SERVER['HTTP_RAW_POST_DATA']...
>
> -- 
> ---John Holmes...
>
> Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/
>
> PHP|Architect: A magazine for PHP Professionals - www.phparch.com
>
>
>
>



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

Reply via email to