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.

iuliana sagaidak
4,797 PointsExample Output: Rasmus Lerdorf was the original creator of PHP
Hi there! Can you help me with this? I try a lot of options, using dot and .=, but computer don't accept my work.
<?php
//Place your code below this comment
$firstName= 'Rasmus';
$lastName= 'Lerdorf';
$fullname= "$firstName $lastName";
$fullname= "$firstName $lastName was the original creator of PHP. /n";
echo $fullname;
?>
2 Answers

Sam Wilson
2,619 PointsHi,
Your code is correct for the most part but not to the specification of the challenge, and it could be simplified a little bit, it should read:
<?php
//Place your code below this comment
$firstName = "Rasmus";
$lastName = "Lerdorf";
$fullname = "$firstName $lastName";
echo "$fullname was the original creator of PHP\n";
?>
Also your new line "\" was the wrong way around. (\n)
Hope this helps :)

iuliana sagaidak
4,797 PointsThank you