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) PHP Data & Structure PHP Variables

kofi amoussou
PLUS
kofi amoussou
Courses Plus Student 7,381 Points

echoing Mike not working? and i am pretty sure i haven't done any mistake in my php code block

don't know why i keep getting error although my code is correct

index.php
<?php $name = "Mike" ?>

<p><?php echo $name ?></p>

2 Answers

Jeff Lemay
Jeff Lemay
14,268 Points

They want you to use a single php-block to declare the variable and echo it (this comes up all the time). You also added some unnecessary paragraph tags that might cause you to fail the challenge.

<?php 
    $name = "Mike";
    echo $name;
?>

Note: Now that we have both statements in a single php-block, you'll need to close them with semi-colons.

Darren Joy
Darren Joy
19,573 Points

It's likely what Jeff Lemay said above.

i also notice that the challenges can be very very specific in what they ask for...