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 trialgijs van wichen
Courses Plus Student 1,152 PointsNow echo Mike's Name To The Screen.
what is wrong?
<?php
$name = "Mike";
echo $name;
?>
<p><?php echo; ?></p>
2 Answers
Emma Willmann
Treehouse Project ReviewerYou don't need to add paragraph tags and a separate set of php tags. all you need is the first set of code:
<?php
$name = "Mike";
echo $name;
?>
Blaž Hvala
2,563 Points<?php
$name = "Mike";
?>
<p><?php echo $name ?> </p>
i did this and it's not working for me, why?
Fernando Aguilar
31,845 PointsFernando Aguilar
31,845 PointsYou need to put something (like your var $name) after the echo to print it out on the p tag. Like this:
<p><?php echo $name; ?></p>