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

Chris Andruszko
Chris Andruszko
18,392 Points

I'm either too tired for this, or there's a glitch...

I'm stuck on this challenge (Task 2 of 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." https://teamtreehouse.com/library/build-a-simple-php-application/adding-a-contact-form/concatentation

This code doesn't work:

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

This code doesn't work:

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

This code doesn't work (spaces in the variables themselves):

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

What am I doing wrong?

edit: added comment as an answer.

Chris Andruszko
Chris Andruszko
18,392 Points

Thanks, Michael! That was it. Sure enough, I was just being stupid.

I tried to rate and reply to your comment, but for some reason those options aren't available to me. Something I'll contact support about.

But thanks for you help!

1 Answer

<?php

$firstName = "Mike";

$middleName = "the";

$lastName = "Frog";

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

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

?>

Not The problem looks like you are using variables before they are declared and initialized. If you place fullName after the declared and initialized variables, it will work.