If I do this...
<input type="text" size="20" name="Admin[Username]" value="<?={$ClientArray[$a][$b][Username]}?>">
with something like $a = bobmarley $b = 4
I get a parse error saying that php expects "," or ";"
How do get this to work?
<input type="text" size="20" name="Admin[Username]" value="<?= $ClientArray[$a][$b]['Username'] ?>">