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 (Retired) PHP Data & Structure PHP Variables

Not working right

this is not working right

index.php
<?php

$name = "Mike";

?>
<html>

  <h2><?php echo $name ?></h2>


  </html>

3 Answers

Chase Marchione
Chase Marchione
155,055 Points

Hi 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
Jake Shasteen
15,985 Points

When 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?

CJ 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.