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 trialDhaval Shah
319 PointsPlease explain me whats wrong and how to rectify
Please explain me whats wrong and how to rectify
<?php
$firstName = "Rasmus";
$lastName = "Lerdorf";
$fullName = $firstName.' '.$lastName;
echo $fullName. "was the original creator of PHP.\n"
?>
2 Answers
Jennifer Nordell
Treehouse TeacherHi there! You're doing great! You're literally off by one space. Currently your code is echoing out "Rasmus Lerdorfwas the original creator of PHP". The "was" is squished up right next to his name.
Now you can fix it in a couple of ways. If we retain your code using concatenation, we can simply add a space to the string literal like so:
echo $fullName . " was the original creator of PHP.\n"
Alternatively (and arguably more readable) would be to skip the concatenation all together like so:
echo "$fullName was the original creator of PHP.\n"
Remember that variables contained inside double quotes will have their values expanded in place which means that the concatenation is actually not necessary here.
Hope this helps!
Moinul Haq
Front End Web Development Techdegree Student 11,178 PointsYou forgot to add a space before was.