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

any one to help me to solve this question

hy

concatenation.php
<?php

$firstName = "Mike";
$middleName = "the";
$lastName = "Frog";


echo "The designer at Shirts 4 Mike shirts is named ____";

?>

4 Answers

Based on the code you posted, I can only guess you're on task 2/4.

Create a variable called fullName and assign it a value equal to the concatenation of the firstName variable, a space, the middleName variable, a space, and the lastName variable.

<?php

$fullName = $firstName . " " . $middleName . " " . $lastName;

?>

<?php

$firstName = "Mike"; $middleName = "the"; $lastName= "Frog";

<?php

$fullName = $firstName . " " . $middleName . " " . $lastName;

?>

echo "The designer at Shirts 4 Mike shirts is named ____";

?>

<?php

$firstName = "Mike"; $middleName = "the"; $lastName= "Frog";

<?php

$fullName = $firstName . " " . $middleName . " " . $lastName;

?>

echo "The designer at Shirts 4 Mike shirts is named ____";

?>

still the is an error

<?php

$firstName = "Mike";
$middleName = "the";
$lastName = "Frog";

$fullName = $firstName . " " . $middleName . " " . $lastName;

echo "The designer at Shirts 4 Mike shirts is named ____";

?>
Ernest Rodriguez
Ernest Rodriguez
17,643 Points

Delete the blanks and leave a space after the closing quote and add . $fullName;