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 trialGREESHMA R SINDHE
7,247 Points<?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
<?php
$name = "Mike";
?>
<!DOCTYPE html>
<html>
<body>
<h1><?php echo "$name"; ?></h1>
</body>
</html>
2 Answers
Grace Kelly
33,990 PointsHi 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!!
GREESHMA R SINDHE
7,247 PointsThank you, Kelly it worked..
GREESHMA R SINDHE
7,247 PointsGREESHMA R SINDHE
7,247 PointsThank you Kelly for reply, but still I am getting the same error.
Grace Kelly
33,990 PointsGrace Kelly
33,990 Pointsah, looking at the code challenge it wants you to echo out the $name variable within a php block without any html so just: