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 trialJeanie Herold
15,555 Pointsphp line break between functions
In php...I know you can use \n for a line break when echoing a string.
But how can I do a line break between functions when calling 2 functions so that my output does not run together on the same line?
I tried nl2br(); but that needs parameters and I am not sure what it wants. I am doing the PHP Functions Basics course.
It seems there should be an easy way to create a line break between examples when I run the code?
1 Answer
Seth Kroger
56,413 PointsIn plain text, you can just echo "\n" between the two function calls. In HTML you can put each function call inside <p>
's.
<p>
<?php functionOne(); ?>
</p>
<p>
<?php functionTwo(); ?>
</p>
Jeanie Herold
15,555 PointsJeanie Herold
15,555 PointsThank you!!