Re: [PHP] var_dump($POST)

2006-04-12 Thread Chris

William Stokes wrote:

Hello,
var_dump($POST) returns now always NULL. Before it returned the POST 
variables and their values like it should, right? Is there something that 
the operator could have done in the server that causes this?


try

var_dump($_POST);

The superglobals (except for 'global' for some reason) are $_ - ie 
$_GET, $_SESSION and so on.


--
Postgresql & php tutorials
http://www.designmagick.com/

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



Re: [PHP] var_dump($POST)

2006-04-12 Thread William Stokes
oooppps :)

sorry about that one...

"Albert Padley" <[EMAIL PROTECTED]> kirjoitti 
viestissä:[EMAIL PROTECTED]
>
> On Apr 13, 2006, at 12:16 AM, William Stokes wrote:
>
>> Hello,
>> var_dump($POST) returns now always NULL.
>
> Try var_dump($_POST);
>
> Note the underline between $ and P.
>
> Al Padley 

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



Re: [PHP] var_dump($POST)

2006-04-12 Thread Albert Padley


On Apr 13, 2006, at 12:16 AM, William Stokes wrote:


Hello,
var_dump($POST) returns now always NULL.


Try var_dump($_POST);

Note the underline between $ and P.

Al Padley

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



[PHP] var_dump($POST)

2006-04-12 Thread William Stokes
Hello,
var_dump($POST) returns now always NULL. Before it returned the POST 
variables and their values like it should, right? Is there something that 
the operator could have done in the server that causes this?
Thanks
-Will 

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