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 trialMUZ141058 Loice Kajawu
3,364 Pointsphp basics echo mike's name
echo a name
<?php
$name = "Mike";
?>
<p><?php echo "Mike" ?></p>
4 Answers
Abe Layee
8,378 PointsI don't know much about php but it should be like this
<?php
$name = "Mike";
echo $name;
?>
MUZ141058 Loice Kajawu
3,364 Pointsthank you!
Christian Andersson
8,712 PointsYour code is almost correct. All you were missing was the trailing ;
-sign after the echo to have correct php syntax. However, you'd probably want to echo the variable $name
instead of the string "Mike".
Patrick Aarstad
1,393 PointsI just tried doing it that way right now, but it did not work. Code below just returned "I do not see the name "MIke"."
Abraham Swarays answer worked wonders though! Shame we didn't learn that yet.
<?php
$name = "Mike";
?>
<p><?php echo $name ?></p>
Christian Andersson
8,712 Pointsyou forgot the semi-colons again
Christian Andersson
8,712 PointsHmm, you are right that it doesn't pass. It must be an issue with the code-challenger because your code is perfectly valid.
Leonardo Vidal
14,603 PointsHi, I got this code from another question it work for me
<?php
$name = "Mike";
echo $name
?>
Here is that question : Code Challenge problem
Christian Andersson
8,712 PointsChristian Andersson
8,712 PointsSorry for posting this off-topic, but I'm helping Treehouse investigate a potential issue with their webserver. Please follow this link and leave a comment saying if you have experienced this webserver issue or not.
https://teamtreehouse.com/forum/attention-treehouse-webserver-issues-please-read
Thank you.