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 Strings

MIke Goldberg
MIke Goldberg
305 Points

Why does the video have its booleans show on multiple lines where i have thee same exact PHP written and it shows on the

In the video, the guy types his code and it outputs on multiple lines. I have the same exact thing written and it's all on the same line?

1 Answer

Hi Mike,

In the video, the PHP that he runs is in a <pre> element which formats any data in between its tags exactly as it written on the page. Since each var_dump() is on a separate line, the data is outputted on two different lines.