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 Arrays

SAHIL SANWAL
SAHIL SANWAL
6,116 Points

what if i want different ellements of array in different rows i.e - $color[0] in one row and after that $color[1] innext

i am confused how i should use \n over here

Hey Sahil, just loop through each array and print value by concatenate <br> tag ....

  foreach($color as $value){
   echo $value."<br>";
}

1 Answer

Walter Allen
seal-mask
.a{fill-rule:evenodd;}techdegree
Walter Allen
iOS Development with Swift Techdegree Student 16,023 Points

Hey, Sahil... what Ashish has said will work if you are echoing out into an html file; however, if you are echoing out to the console, you would need to use the newline escape sequence: /n.

So, you could write either

echo $value . "<br>";

OR

echo $value . "/n";

depending on where your output is (html file or console). Hope that helps!