|
Posted by James Kaufman on 01/16/05 18:07
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>";
}
Navigation:
[Reply to this message]
|