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 trialjoshuastevens
8,106 PointsThis activity isn't working for me - even with correct code.
It seems there might be a bug in this challenge? The code I've put in should work fine.
<?php
$name = "Mike";
?>
<?php echo $name ?>
1 Answer
Steve Hunter
57,712 PointsIf you put the echo
in the same code block, it'll work. (And add a semi-colon)
<?php
$name = "Mike";
echo $name;
?>
Steve.
joshuastevens
8,106 Pointsjoshuastevens
8,106 PointsThanks. It's odd that it didn't work with the way I originally entered it, but whatever works!
Steve Hunter
57,712 PointsSteve Hunter
57,712 PointsThe tests behind the code challenges can be very specific and a bit overly-picky at times!!