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 trialkofi amoussou
Courses Plus Student 7,381 Pointsechoing 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
<?php $name = "Mike" ?>
<p><?php echo $name ?></p>
2 Answers
Jeff Lemay
14,268 PointsThey 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
19,573 PointsIt's likely what Jeff Lemay said above.
i also notice that the challenges can be very very specific in what they ask for...
kofi amoussou
Courses Plus Student 7,381 Pointskofi amoussou
Courses Plus Student 7,381 Pointsyou are right Jeff Lemay thanks