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 trialSigurður Magnússon
8,544 PointsNot working right
this is not working right
<?php
$name = "Mike";
?>
<html>
<h2><?php echo $name ?></h2>
</html>
3 Answers
Chase Marchione
155,055 PointsHi Sigurður,
Looks like the compiler is expecting the echo statement to be in the same php block (also, since the challenge didn't ask for any HTML, you don't have to worry about adding HTML tags to your answer.)
<?php
$name = "Mike";
echo $name
?>
Hope this helps!
Jake Shasteen
15,985 PointsWhen you say "This isn't working right," what exactly is going wrong with it?
Do you just get a blank white screen?
Does viewing the source show your <h2> tags but empty?
Ted Sumner
Courses Plus Student 17,967 PointsCJ is exactly right. You put way more in than the challenge asked for. There is nothing wrong with your code and is how you would really code. It is just not what the challenge asked for.