Re: Problem with foreatch()

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Sun, Jan 16, 2005 at 03:20:26PM +0000, Ben Edwards (lists) wrote:
> I have the following Code:
> 
>   foreatch( $_POST["mtype"] as $akey => $avalue ) {
>     echo "$akey, $avalue<br>";
>   }
> 
> When I run it I get:
> 
>   Parse error: parse error, unexpected T_AS   
>   in /var/www/mb/mb_estab_update.php on line 58
> 
> 58 is the line with the foreatch on it.  However if I replace it with:
> 
>   print_r( $_POST["mtype"] );    
> 
> I get:
> 
>   Array ( [1] => RESTAURANT [2] => BEVERAGEWINE [3] => MAIN )
> 
> so the array is populated, what am I doing Wrong?
> 
> Regards,
> Ben

You could try:

foreach( $_POST["mtype"] as $akey => $avalue ) {
    echo "$akey, $avalue<br>";
}

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux