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 trialSAHIL SANWAL
6,116 Pointswhat 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
1 Answer
Walter Allen
iOS Development with Swift Techdegree Student 16,023 PointsHey, 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!
Ashish Mehra
Courses Plus Student 33 PointsAshish Mehra
Courses Plus Student 33 PointsHey Sahil, just loop through each array and print value by concatenate <br> tag ....