Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialAJ Ramirez
5,403 PointsCannot get past this exercise
How do I echo a value from an associative array?
<?php
//edit this array
$contacts = array(['name' => 'Alena Holligan', 'email' => 'alena.holligan@teamtreehouse.com'], ['name' => 'Dave McFarland', 'email' => 'dave.mcfarland@teamtreehouse.com'], ['name' => 'Treasure Porth', 'email' => 'treasure.porth@teamtreehouse.com'
], ['name' => 'Andrew Chalkley', 'email' => 'andrew.chalkley@teamtreehouse.com']);
echo "<ul>\n";
//$contacts[0] will return 'Alena Holligan' in our simple array of names.
echo "<li>print_r($contacts[0]['name']) : print_r($contacts[0]['email'])</li>\n";
echo "<li>print_r($contacts[1]['name']) : print_r($contacts[1]['email'])</li>\n";
echo "<li>print_r($contacts[2]['name']) : print_r($contacts[2]['email'])</li>\n";
echo "<li>print_r($contacts[3]['name']) : print_r($contacts[3]['email'])</li>\n";
echo "</ul>\n";
1 Answer
Jonathan Grieve
Treehouse Moderator 91,253 PointsYou don't need the printf()
function. The echo statements are already there for you in place.
What the challenge is asking you to do is replace the hard coded values that represent what is in the array with the values according to the array index, but if you put it in a string the PHP engine will read that as text.
For example,
Replace the lines like this.
<?php
echo "<li>print_r($contacts[0]['name']) : print_r($contacts[0]['email'])</li>\n";
To look more like this
<?php
echo "<li>". $contacts[0]['name']) . ":" . $contacts[0]['email']) . "</li>\n";
Good luck, and shout again if you're still stuck. :)
AJ Ramirez
5,403 PointsAJ Ramirez
5,403 PointsThank you!
Alycia Canavan
1,244 PointsAlycia Canavan
1,244 PointsCan you explain why the ) are necessary after ['name'] and ['email']? I don't see any opening parentheses. I've been trying this exercise like this:
echo "<li> $contacts[0]['name'] : $contacts[0]['email']</li>\n";
And I'm really confused about why it's not working.