10, 'Bob'=>20, 'John'=>30); echo "\$b['Al'] is {$b['Al']}, " . "\$b['Bob'] is {$b['Bob']}, " . "\$b['John'] is {$b['John']}.\n"; echo "\$b['Al'] is $b[Al], " . "\$b['Bob'] is $b[Bob], " . "\$b['John'] is $b[John].\n"; //But the following one does not work: //echo "\$b['Al'] is $b['Al'], " // . "\$b['Bob'] is $b['Bob'], " // . "\$b['John'] is $b['John'].\n"; echo "3Press Enter to continue ... "; $discard = fgets(STDIN); ?>