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 trialEndrit Mehmedi
147 PointsWhy it doesn't work
i use: <p><?php echo "Hello World"?> and it says Bummer!
<html>
<head>
<title>PHP Basic Usage Challenge</title>
</head>
<body>
<p>Hello,world</p>
<p><?php echo "Hello World" ?>
</body>
</html>
3 Answers
Emma Willmann
Treehouse Project ReviewerOn this challenge, you are just supposed echo the words Hello world between the body tag. So you do not need to add a paragraph tag, just the php code. Should look like this:
<html>
<head>
<title>PHP Basic Usage Challenge</title>
</head>
<body>
<?php echo "Hello World"; ?>
</body>
</html>
Ayoub AIT IKEN
12,314 Pointsyou didnt close the 'p' tag !
Endrit Mehmedi
147 PointsOK thanks I didn't use <!DOCTYPE html> and didn't close </p> It works now.