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

Well "\n" is just a space in my code, In the video is a new line, Why?

<?php

      $greeting = "Hello, Friends\n";
      $greeting{0} = "J";
      $secondary_greeting = "How are you today?";
       echo $greeting; 
       echo $secondary_greeting;

?>

1 Answer

Simon Coates
Simon Coates
28,694 Points

Probably due to the HTML handling of white space. It is probably a \n if you look at the source code, rather than what the browser is showing you. Writing PHP, if you want a new line, you need to use HTML tagging (p, div or just a simple <br>) as the output of your script will be interpreted by the browser.