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

Oleg Shubin
Oleg Shubin
2,374 Points

PHP Development Challenge task 2 of 4

Help me please. I don't know what I need to do in this task. I tried different options with pasting . "\n" in all variable, but it still not working. Here is the masege of chalange: Bummer! $fullName is set, but it's not the concatenation of $firstName, $middleName, and $lastName with spaces between them. And here is my code: <?php

$firstName = "Mike"; $middleName = "the"; $lastName = "Frog"; $fullName = $firstName . "\n" . $middleName . "\n" . $lastName;

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

?>

1 Answer

Hi Oleg,

They want you to separate each part of the name with a space " " not a line return "\n"