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.

Sigurð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

cm21
150,854 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.