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 PHP Basics Daily Exercise Program String Manipulation

Reginald Beneke
PLUS
Reginald Beneke
Courses Plus Student 4,282 Points

PHP task query

Hi, so here is my task.

  • Use the $fullname variable to display the following string to the screen. Use an escape character to add a newline to the end of the string. 'Rasmus Lerdorf was the original creator of PHP'.

And here is my answer:

<?php

$firstName = 'Rasmus'; $lastName = 'Lerdorf'; $fullname = $firstName . " " . $lastName ; $fullname .= " was the original creator of PHP" ; ?>

My problem is that it says task number 2 is no longer passing. But the instruction is to use the $fullname variable.

If someone can help me in this regard, that would be great.

Thanks in advance,

Kind regards, Reg.

index.php
<?php

//Place your code below this comment
$firstName = 'Rasmus';
$lastName = 'Lerdorf';
$fullname = $firstName . " " . $lastName ;
$fullname .= " was the original creator of PHP" ;
?>

1 Answer

It only wants you to "use" the variable to display the string, but not modify it. By modifying it, $fullname no longer passes the previous challenge, which is what your issue is. Instead, just display your concatenation without actually reassigning the variable and you should be good :)

Antonio De Rose
Antonio De Rose
20,884 Points

last line should be like

<?php
echo $fullname." was the original creator of PHP" ;
?>