Posted by Colin McKinnon on 06/17/05 16:21
douglass_davis@earthlink.net wrote:
> You can use POST or GET to "send variables" to the next page.
<snip>
> From the PHP web site:
<snip>
> You may retrieve the GET variable 'a' (from index2.php?a=0&b=1&c=2)
> by the using these
> $_POST['a'];
> $_REQUEST['a'];
>
Really? The PHP website said that?
It should have said:
You may retrieve the GET variable 'a' (from index2.php?a=0&b=1&c=2)
by the using these
$_GET['a'];
$_REQUEST['a'];
C.
Navigation:
[Reply to this message]
|