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

What am i doing wrong here?

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

2 Answers

Prateek Kedia
Prateek Kedia
8,707 Points
<p><?php echo "Hello, World!" ?></p>
Prateek Kedia
Prateek Kedia
8,707 Points

Remove the space between <? and php

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hi Ben. Welcome to Treehouse.

While Prateek answer is correct in syntax and corrects your spacing mistake, the phrase being echoed out is incorrect and will cause a "Bummer!"

First note, that while whitespace makes no difference IN PHP, the whitespace (or lack of) in the PHP tag is vital. So, no space between the ? mark and php.

Second note, the challenges are very specific and picky. It asks to echo out "Hello World" with no comma and no exclamation point.

Have fun and Keep Coding! :)