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 trialChris Andruszko
18,392 PointsI'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?
Chris Andruszko
18,392 PointsThanks, 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
Michael Makali'i Fernandez
8,090 Points<?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.
Chris Andruszko
18,392 PointsThanks again!
Michael Makali'i Fernandez
8,090 PointsMichael Makali'i Fernandez
8,090 Pointsedit: added comment as an answer.