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

<?php $name = "Mike"; ?> <!DOCTYPE html> <html> <body> <h1><?php echo $name ?></h1> </body> </html>

What's wrong in this code? I'm getting Bummer! I am not seeing Mike's name

index.php
<?php

$name = "Mike";

?>

<!DOCTYPE html>
<html>
  <body>
    <h1><?php echo "$name"; ?></h1>
  </body>  
</html>

2 Answers

Grace Kelly
Grace Kelly
33,990 Points

Hi Greeshma, you need to remove the quotes from the $name variable as we don't need them to echo out a variable like so:

 <h1><?php echo $name; ?></h1>

Hope that helps!!

Thank you Kelly for reply, but still I am getting the same error.

Grace Kelly
Grace Kelly
33,990 Points

ah, looking at the code challenge it wants you to echo out the $name variable within a php block without any html so just:

<?php

$name = "Mike";

echo $name;

?>

Thank you, Kelly it worked..