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 trialKevin Alvarez
4,851 PointsIf i want to echo 2 different keys in my array on separate lines how would i write that out?
This is the code that i wrote
$eye_colors = array(
"Kim" => "Green",
"Martia" => "Blue",
"Kevin"=> "Brown"
);
echo $eye_colors["Martia\n"];
echo $eye_colors["Kevin"];
And this is the result when i try to load the page
Notice: Undefined index: Martia in /home/treehouse/workspace/index.php on line 51
Brown
2 Answers
Ken Toh
14,116 Points<?php
$eye_colors = array(
"Kim" => "Green",
"Martia" => "Blue",
"Kevin"=> "Brown"
);
echo $eye_colors["Martia"]."<br/>";
echo $eye_colors["Kevin"];
?>
Ken Toh
14,116 PointsYou got an extra "\n" after Martia?
Kevin Alvarez
4,851 PointsYeah, i want the eye_color for martia and kevin to print out in 2 different lines. If i just type it out like this
echo $eye_colors["Martia"];
echo $eye_colors["Kevin"];
This is what is what it prints on the screeen
BlueBrown
Kevin Alvarez
4,851 PointsKevin Alvarez
4,851 PointsYup! that's what i was looking for. Thank you !