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) What is PHP? PHP Basic Usage

marsha spell
PLUS
marsha spell
Courses Plus Student 5,555 Points

php 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>

index.php
<html>
<head>
<title>PHP Basic Usage Challenge</title>
</head>
<body>
<p><?php echo "Hello, World!"?></p>
</body>
</html>

3 Answers

Sue Dough
Sue Dough
35,800 Points

Lose the comma, exclamation mark, p tags and add a semi colon at the end of your statement.

<?php echo "Hello World"; ?>
Sue Dough
Sue Dough
35,800 Points
  1. Refresh your browser

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