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 trial

PHP Build a Simple PHP Application Adding a Contact Form Concatentation

task 2 of 4

am having troubles with this code, anyone help me

concatenation.php
<?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

Hi 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 ____";

?>

Thank you Marcus, it worked well

You are very welcome, Blessing! Happy Coding! :)