On Tue, 21 Sep 2004 20:25:44 -0700 (PDT), zareef ahmed
<[EMAIL PROTECTED]> wrote:
>
> All values passed via query string will be available
> via in $_GET array. You can simply get them from this
> array.
You can also acces them via the $_REQUEST array, which also contains
the values in $_POST an
Hi,
All values passed via query string will be available
via in $_GET array. You can simply get them from this
array.
Example
http://www.example.com/script.php?fname=me&lname=you
then fname and lname will be available as
$fname =$_GET['fname'];
$lname =$_GET['lname'];
BTW it is basic PHP, I
On Tue, 21 Sep 2004 20:16:50 -0700, AMC <[EMAIL PROTECTED]> wrote:
> How do you access values sent to a page as part of a querystring in php?
They arrive in the $_GET array in modern PHP installs.
print_r($_GET);
--
Greg Donald
http://gdconsultants.com/
http://destiney.com/
--
PHP General Ma
3 matches
Mail list logo