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 trialmarsha spell
Courses Plus Student 5,555 Pointsphp help please
Challenge Task 1 of 1
Inside of the body tags add a php statement that echos the phrase "Hello World" here is my code can anyone tell me what I'm doing wrong?
<p><?php echo"Hello,World!"?></p>
<html>
<head>
<title>PHP Basic Usage Challenge</title>
</head>
<body>
<p><?php echo "Hello, World!"?></p>
</body>
</html>
3 Answers
Sue Dough
35,800 PointsLose the comma, exclamation mark, p tags and add a semi colon at the end of your statement.
<?php echo "Hello World"; ?>
marsha spell
Courses Plus Student 5,555 PointsI did it keeps saying Bummer
Sue Dough
35,800 PointsRefresh your browser
Copy and paste the following between the body tags, NOTHING ELSE ( no p tags )
<?php echo "Hello World"; ?>
It for sure works. Your just doing something wrong.
marsha spell
Courses Plus Student 5,555 Pointscool it worked thanks!
Sue Dough
35,800 Pointscool :)