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 trialMartina Carrington
15,754 PointsI am stuck on challenge task 4 of 4
Hi everybody, I am stuck on task 4 maybe, i made a error on the code
<?php
$firstName = "Mike"; $middleName = "the"; $lastName = "Frog";
$fullName = $firstName . $middleName . $lastName;
echo "The designer at Shirts 4 Mike shirts is named " . $fullName . "!";
?>
<?php
$title = "Dr.";
$firstName = "David";
echo "The lead character from 2001: A Space Odyssey is named ____";
?>
1 Answer
Jennifer Nordell
Treehouse TeacherThe problem is in your fullName variable. It needs spaces. Right now your code would have the $fullName as MiketheFrog instead of "Mike the Frog". Take a look at my solution:
<?php
$title = "Dr.";
$firstName = "David";
$lastName = "Bowman";
$fullName = $title . " " . $firstName . " " . $lastName;
echo "The lead character from 2001: A Space Odyssey is named " . $fullName . "!";
?>
P.S. Changing the value of variables to names they didn't specify will cause the challenge to fail. You must use Dr. David Bowman.
Martina Carrington
15,754 PointsMartina Carrington
15,754 PointsThanks @Jennifer Nordell .