Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Tinashe Pride Mudzimu
5,886 PointsBummer: I do not see a period
1) Use the $fullName variable
2) Display the following string to the screen.
Rasmus Lerdorf was the original creator of PHP.
3) Use an escape character to add a newline to the end of the string.
<?php
//Place your code below this comment
$firstName = 'Rasmus';
$lastName = 'Lerdorf';
$fullName = "$firstName" . " $lastName";
echo $fullName . ' '. 'was the original creator of PHP' . "\n";
?>
2 Answers

jamesjones21
9,260 PointsWhere your end echo is add a full stop before the escape sequence:
echo $fullName . ' '. 'was the original creator of PHP' . ".\n";

David Evans
10,487 PointsYou are missing a period ( . ) after 'was the original creator of PHP'.
Although this is simple code, try to stick to using the same quotations, and tidy up your formatting a bit as these good practices will help you write cleaner code in the future. As we are required to have a new line ( \n ) in our answer, we'll want to use double quotations ( " ) in our echo statement.
You also do not need " around your variable names in the $fullName variable declaration.
Example:
<?php
//Place your code below this comment
$firstName = 'Rasmus';
$lastName = 'Lerdorf';
$fullName = $firstName . ' ' . $lastName;
echo $fullName . " was the original creator of PHP.\n";
?>```