foreach($HTTP_POST_VARS as $key => $val) {
   echo "$key: $val<br>\n";
}

On Mon, 21 May 2001, Carlos Fernando Scheidecker Antunes wrote:

> Hello all,
>
> I'm trying to loop the $HTTP_POST_VARS variable like an array like this :
>
> $index = count($HTTP_POST_VARS);
>
> for($i=0; i < $index; i++) {
>     $itens = $HTTP_POST_VARS[$i];
> }
>
> But it is not working.
>
> Can anoyone tell me how to do it?
>
> Thanks,
>
> Carlos Fernando.
>


-- 
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