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 trialEliron Giny
4,228 Pointsphp-variables challenge is unsolvable
It says echo Mike to screen and i can't do it
<?php
$name = "Mike";
?>
<?php echo $name ?>
2 Answers
Travis Christian
19,878 Points<?php $name = "Mike";
echo $name; ?>
Daniel Peterson
4,456 Points....Ok, this solves it...Maybe not the best question prompt....
Even this didn't work:
<?php $name = "Mike" ?> <!DOCTYPE html> <html> <body> <h1><?php echo $name ?></h1> </body> </html>
Terence Chew
Courses Plus Student 1,037 PointsTerence Chew
Courses Plus Student 1,037 Pointsi stuck that too..thx for the answer..
Eliron Giny
4,228 PointsEliron Giny
4,228 PointsThank you !