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 Daily Exercise Program String Manipulation

Confused with the quotation marks usage.. Help!!!!

Use the $fullname variable to display the following string to the screen. Use an escape character to add a newline to the end of the string. 'Rasmus Lerdorf was the original creator of PHP'

index.php
<?php

//Place your code below this comment
$firstName = 'Rasmus';
$lastName = 'Lerdorf';
$fullname = "$firstName $lastName" . 'was the original creator of PHP' . '\n';

?>

2 Answers

Benjamin Larson
Benjamin Larson
34,055 Points

Hi Atul -

First, you'll need to display the appropriate string to the screen using echo. At the moment, you're just storing the string into a variable, but not displaying it.

Second is that the newline character will only be properly escaped using a double quoted string.

It's a lot to learn at first...so many rules and quirks but it doesn't take long to adjust if you keep experimenting and practicing.

Antonio De Rose
Antonio De Rose
20,885 Points

use the escape character with wrapped with double quotes, you were missing the space before 'w' in the word was, and was also missing the space in between $firstName and $lastName

<?php
$firstName = 'Rasmus';
$lastName = 'Lerdorf';

$fullname = $firstName . ' ' . $lastName;

echo $fullname . ' was the original creator of PHP' . "\n";
?>