Ask a Question related to PHP Development, Design and Development.
-
Marc Lambrichs #1
$_POST empty, $HTTP_RAW_POST_DATA filled
We receive a POST message being a multipart/mixed type. The
$HTTP_RAW_POST_DATA shows it perfectly. However, I expected the $_POST to be
filled as well, which is empty. We're using php 4.3.3.
Any ideas?
Thx.
Marc
Marc Lambrichs Guest
-
$_POST getting lost, $GLOBALS['HTTP_RAW_POST_DATA'] is still set
Hi All, I cannot turn off magic quotes, since I am just leasing space from a hosting company, and they determine the magic_quotes settings. I... -
#25914 [Csd->Bgs]: $_POST array is always empty
ID: 25914 Updated by: sniper@php.net Reported By: atabac01 at hotmail dot com -Status: Closed +Status: ... -
#25914 [Opn->Csd]: $_POST array is always empty
ID: 25914 User updated by: atabac01 at hotmail dot com Reported By: atabac01 at hotmail dot com -Status: Open... -
#25914 [NEW]: $_POST array is always empty
From: atabac01 at hotmail dot com Operating system: windows XP PHP version: 4.3.3 PHP Bug Type: *General Issues Bug... -
Why if(isset($_POST)) is true when its empty...
Folks, At the begining of my html I have a PHP insert which should be called when the user submits the form that the html contains... I found... -
Luke Ross #2
Re: $_POST empty, $HTTP_RAW_POST_DATA filled
Hi,
Marc Lambrichs wrote:AFAIK, $_POST only gets filled if the POST type is> We receive a POST message being a multipart/mixed type. The
> $HTTP_RAW_POST_DATA shows it perfectly. However, I expected the $_POST to be
> filled as well, which is empty. We're using php 4.3.3.
"application/x-www-form-urlencoded". Otherwise you have to decode it by
hand.
Luke
Luke Ross Guest
-
Randell D. #3
Re: $_POST empty, $HTTP_RAW_POST_DATA filled
"Marc Lambrichs" <marcl@melange-it.nl> wrote in message
news:3f822f00$0$58714$e4fe514c@news.xs4all.nl...be> We receive a POST message being a multipart/mixed type. The
> $HTTP_RAW_POST_DATA shows it perfectly. However, I expected the $_POST toI've not tried that yet but if I were I'd shove your form data through to> filled as well, which is empty. We're using php 4.3.3.
>
> Any ideas?
> Thx.
> Marc
phpinfo(); and check where it turns up there...
Randell D. Guest
-
Nikolai Chuvakhin #4
Re: $_POST empty, $HTTP_RAW_POST_DATA filled
"Marc Lambrichs" <marcl@melange-it.nl> wrote
in message news:<3f822f00$0$58714$e4fe514c@news.xs4all.nl>...What about $_FILES?>
> We receive a POST message being a multipart/mixed type. The
> $HTTP_RAW_POST_DATA shows it perfectly. However, I expected
> the $_POST to be filled as well, which is empty.
Cheers,
NC
Nikolai Chuvakhin Guest
-
Zurab Davitiani #5
Re: $_POST empty, $HTTP_RAW_POST_DATA filled
Marc Lambrichs wrote on Monday 06 October 2003 20:11:
Just a side note - if you are using 4.3.3, it's better to use php://input> We receive a POST message being a multipart/mixed type. The
> $HTTP_RAW_POST_DATA shows it perfectly. However, I expected the $_POST to
> be filled as well, which is empty. We're using php 4.3.3.
instead of $HTTP_RAW_POST_DATA. See
[url]http://us4.php.net/wrappers.php[/url]
--
Business Web Solutions
ActiveLink, LLC
[url]www.active-link.com/intranet/[/url]
Zurab Davitiani Guest



Reply With Quote

