foreach ($HTTP_POST_VARS as $key=>$value)
{
   echo "$key = $value";
}

-Stewart

-----Original Message-----
From: Tamas Bucsu [mailto:[EMAIL PROTECTED]]
Sent: 13 August 2001 14:07
To: [EMAIL PROTECTED]
Subject: [PHP] How to get the query string?


hi guys,

I'd like to get the query string the browser sends to the script. The
problem is that since the $HTTP_POST_VARS (or $HTTP_GET_VARS ) is an
associative array I can't use numbers to point to the elements of this
array. This piece of code does not work:

for ($a=1;$a<=sizeof($HTTP_POST_VARS);$a++){
 echo "$a. ".$HTTP_POST_VARS[$a]."<br>";
}

Please help

Tamas Bucsu

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to