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 trialKarine Heinonen
1,446 PointsWhat is wrong in my code?
//edit this array
$contacts = array(
array ('name'=>'Alena Holligan',
'email'=> 'alena.holligan@teamtreehouse.com'),
array('name'=>'Dave McFarland',
'email'=>'dave.mcfarland@teamtreehouse.com'),
array('name'=>'Treasure Porth',
'email'=>'treasure.porth@teamtreehouse.com'),
array('name'=>'Andrew Chalkley',
'email'=>'andrew.chalkley@teamtreehouse.com')
);
echo $contacts[0]['name'] . ": " . $contacts[0]['email']. "<br /> ";
echo $contacts[1]['name'] . ": " . $contacts[1]['email']. "<br /> ";
echo $contacts[2]['name'] . ": " . $contacts[2]['email']. "<br /> ";
echo $contacts[3]['name'] . ": " . $contacts[3]['email']. "<br /> "; ```
1 Answer
Steven Parker
231,198 PointsClose! You are using the variables properly, but you've changed the structure of the HTML. The original code used an unordered list (ul / li) for the output lines, but here you have text with individual line brakes.
To pass the challenge, re-create the original structure using your variables:
<?php //...
echo "<ul>\n"; // keep the ul (and the li's)
echo "<li>" . $contacts[0]['name'] . " : " . $contacts[0]['email'] . "</li>\n";
//...
echo "</ul>\n";