> No idea, but a fella on this list told me [] had been deprecated in
> favour of {} Maybe that has something to do with it?

Maybe:

 $a[${'%coding'}] = 'red';

this works:

<?
${'%coding'}='blue';
$a[${'%coding'}]='red';
echo $a[blue];//print red
?>

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