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 trialCharlotte Boyer
4,552 PointsI am on task 3 of 3 on the PHP basics challenge. I can't seem to figure it out! :/
Could you clarify what the task is asking me to do?
<?php
//Place your code below this comment
$firstName = 'Rasmus';
$lastName = 'Lerdorf';
$fullname = "$firstName $lastName was the original creator of PHP\n";
echo $fullname;
?>
2 Answers
Chris Davis
16,280 PointsIn theory, your code would work. However, i think they want you to use concatenation.
Something like this...
$someVariable = "Josh";
$someVariable2 = "Homme";
$someVariable3 = $someVariable . " " . $someVariable2;
echo $someVariable3 . " is the lead singer of 'Queens of the Stone Age'" . "\n";
Demonstration https://www.tehplayground.com/jdn0Qq1x9qtLWZUL Hope that helps
Charlotte Boyer
4,552 PointsTHANK YOU!! I appreciate it :)