I refer to them as:
$Username=$_POST['Username'];
$Password=$_POST['Password'];
$EMail=$_POST['EMail'];
 and on the form i have method="post" so I don't know why this is not
working

On 11/25/05, Stephen Johnson <[EMAIL PROTECTED]> wrote:
>
> You would access them by declaring them as regular variables and then
> using
> the regular variables in your code.
>
> <?php
>
> $username = $_POST['Username'];
> $password = $_POST['Password'];
> $email = $_POST['Email'];
>
> ?>
>
>
> As a side note - please do NOT turn global variables on in your php.ini
> file.  There is a good reason for why it is shut off and "good" php does
> not
> need to have it turned on.
>
> Hope that helps .
>
>
> <?php
> /*
>
> Stephen Johnson c | eh
> The Lone Coder
>
> http://www.ouradoptionblog.com
> Join our journey of adoption
>
> http://www.thelonecoder.com
> [EMAIL PROTECTED]
>
> continuing the struggle against bad code
>
> */
> ?>
>
>
> > From: Unknown Unknown <[EMAIL PROTECTED]>
> > Date: Fri, 25 Nov 2005 17:38:02 -0500
> > To: Richard Davey <[EMAIL PROTECTED]>
> > Cc: <php-general@lists.php.net>
> > Subject: Re: [PHP] $_GET and $_POST arrays not working
> >
> >
>
>
>

Reply via email to