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 trialkatko
477 PointsMy code works in the workspace console but not in the test console.
<?php $firstName = "Rasmus"; $lastName = "Lerdorf"; $fullName = "$firstName" . " $lastName"; $fullName .= " was the original creator of PHP." . " \n "; echo $fullName; ?>
I am not sure where I am going wrong.
<?php
//Place your code below this comment
$firstName = "Rasmus";
$lastName = "Lerdorf";
$fullName = "$firstName" . " $lastName";
$fullName .= " was the original creator of PHP." . " \n ";
?>
2 Answers
Steven Parker
231,261 PointsThe instructions for task 3 say to display the message string to the screen, but this code modifies $fullName instead.
The instructions also say to make use of $fullName, but don't ask for it to be modified.
katko
477 PointsThank you. I am still confused. Sorry. I will go back to the video.