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 trial

PHP PHP Basics (Retired) PHP Datatypes Associative Arrays

Kevin Alvarez
Kevin Alvarez
4,851 Points

If 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
Ken Toh
14,116 Points
<?php

$eye_colors = array(
        "Kim" => "Green", 
        "Martia" => "Blue", 
        "Kevin"=> "Brown"
   );

   echo $eye_colors["Martia"]."<br/>";
   echo $eye_colors["Kevin"];

?>
Kevin Alvarez
Kevin Alvarez
4,851 Points

Yup! that's what i was looking for. Thank you !

Ken Toh
Ken Toh
14,116 Points

You got an extra "\n" after Martia?

Kevin Alvarez
Kevin Alvarez
4,851 Points

Yeah, 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