Re: [PHP] accessing querystring values

2004-09-21 Thread Brad Pauly
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

Re: [PHP] accessing querystring values

2004-09-21 Thread zareef ahmed
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

Re: [PHP] accessing querystring values

2004-09-21 Thread Greg Donald
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