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 trialSheryl Darroch
Treehouse Project ReviewerPHP Challenge - use $fullName to display Rasmus Lerdorf was the original creator of PHP.
When I preview it, it looks right, but I keep getting "Bummer!"
<?php
$firstName = 'Rasmus';
$lastName = 'Lerdorf';
$fullName = $firstName . ' ' . $lastName;
echo "$fullName was the original creator of PHP.\n";
?>
1 Answer
Jason Anders
Treehouse Moderator 145,860 PointsHi Sheryl,
Everything is correct, but the challenge is being super picky. In your string, you have a period at the end, and in the instructions, the string does not. ... like I said, super picky.
Just delete the period in your string and the challenge passes.
Keep Coding! :)
Sheryl Darroch
Treehouse Project ReviewerSheryl Darroch
Treehouse Project ReviewerThanks!!