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 trialAndrew Njonjo
Courses Plus Student 368 PointsI am meant to output "Mike" what might be wrong with my code?
I am doing a question and this is the challenge. To output the name "Mike" in php. Below is my code. What am i doing wrong? <?php $name="Mike" ?>
<?php echo $name ?>
<?php $name="Mike" ?>
<?php echo $name ?>
3 Answers
Andrew Njonjo
Courses Plus Student 368 PointsI figured out what the error is. You have to properly space out the code. I had written <?php $name="Mike" ?>. When it should have been <?php $name = "Mike" ?> thank you for the reply.
Michael Piercy
1,756 PointsThis works for me. Are you receiving an error?
Jonathan Grieve
Treehouse Moderator 91,253 PointsTry putting the code into one PHP code block.
<?php
$name="Mike";
<?php echo $name;
?>
You'll need to close each statement with a semi colon (;).