Posted by Stephen Johnson on 11/26/05 00:46
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
stephen@thelonecoder.com
continuing the struggle against bad code
*/
?>
> From: Unknown Unknown <phpinfolist@gmail.com>
> Date: Fri, 25 Nov 2005 17:38:02 -0500
> To: Richard Davey <rich@corephp.co.uk>
> Cc: <php-general@lists.php.net>
> Subject: Re: [PHP] $_GET and $_POST arrays not working
>
>
[Back to original message]
|