Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Simingaye Dube
2,587 PointsCreate a variable called $fullName and assign it to the concatenation
Create a variable called $fullName and assign it a value equal to the concatenation of the $title variable, a space, the $firstName variable, a space, and the $lastName variable
<?php
$title = "Dr.";
$firstName = "David";
$lastName = "Bowman";
$fullName = "$title . $firstName . $lastName";
echo "The lead character from 2001: A Space Odyssey is named ____";
?>
1 Answer

Simon Coates
28,692 Pointstry
<?php
$title = "Dr.";
$firstName = "David";
$lastName = "Bowman";
$fullName = $title ." ". $firstName ." ".$lastName;
echo "The lead character from 2001: A Space Odyssey is named ____";
?>
Simon Coates
28,692 PointsSimon Coates
28,692 Pointsthe use of . for concatenation is between strings. if not using concatenation, the following would work:
$fullName = "$title $firstName $lastName";