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 trialMUZ140560 Tandiwe Tsanulani
1,172 Pointsphp basics
It seems i am failing to understand the question
<?php
$name ="Mike";
?>
<p><?php echo $name ="Mike" ?></p>
3 Answers
eduardomejia2
Courses Plus Student 22,237 PointsYou should post the question too, but I think that you should remove all the code after $name in the p tag. Because you already set the variable to Mike.
The correct code should be:
<?php
$name ="Mike";
?>
<p><?php echo $name ?></p>
TJ Egan
14,420 Points<?php echo $name ?>
Since you set the variable, you can just echo that.
Stephanie Lawrence
1,876 PointsThis is what I have inputted and I still get the "Bummer! I am not seeing the word "Mike" in the output. Did you echo something different?" response...
I also tried nesting it in HTML coding
Stephanie Lawrence
1,876 PointsAlright, problem solved...
<?php
$name = "Mike";
echo $name;
?>