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 trialMUZ140306 Blessing Muhakichi
1,627 Pointstask 2 of 4
am having troubles with this code, anyone help me
<?php
$firstName = "Mike";
$middleName = "the";
$lastName = "Frog";
$fullName = $firstName."".$middleName."".$lastName;
echo "The designer at Shirts 4 Mike shirts is named ____";
echo $fullName;
?>
1 Answer
Marcus Parsons
15,719 PointsHi Blessing,
You are so close! You only need to add a space within your "" so that the name will look like a name when it is concatenated. Right now, it would be "MiketheFrog" but instead it should look like a name: "Mike the Frog".
<?php
$firstName = "Mike";
$middleName = "the";
$lastName = "Frog";
$fullName = $firstName." ".$middleName." ".$lastName;
echo "The designer at Shirts 4 Mike shirts is named ____";
?>
MUZ140306 Blessing Muhakichi
1,627 PointsMUZ140306 Blessing Muhakichi
1,627 PointsThank you Marcus, it worked well
Marcus Parsons
15,719 PointsMarcus Parsons
15,719 PointsYou are very welcome, Blessing! Happy Coding! :)