Posted by Krustov on 12/18/17 11:51
<comp.lang.php>
<drec>
<27 Jun 2006 07:10:55 -0700>
<1151417455.255864.310160@m73g2000cwd.googlegroups.com>
> I am creating a search box that the user types a value in, and then
> this gets passed to another page called search.php
>
> I would like to be able to pass these values through the URL, but I
> cant seem to figure out how. Right Now I have a simple html form that
> passes the value through posting, which I can then pull with a
> $_POST['name']. But I need to have this value be passed through URL.
>
$_REQUEST['name']
$_REQUEST['demo']
$_REQUEST['blah']
whatever.php?name=ONE&demo=TWO&blah=THREE
--
www.emailuser.co.uk/?name=KRUSTOV
[Back to original message]
|