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 trialJessica Rasmussen
1,889 PointsHow to echo Mike's name to screen?
I've tried just adding the php <?php echo $name ?>
I've also tried adding html, body, and paragraph tags.
<?php $name = "Mike"; ?>
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
</head>
<body>
<section>
<?php echo $name ?>
</section>
</body>
</html>
3 Answers
Marcus Parsons
15,719 PointsHey Jessica,
You really don't have to do all that haha The simplest way to pass this challenge is to run your echo $name;
line after the variable creation line because that's what it wants you to do! :)
<?php
$name = "Mike";
echo $name;
?>
Chris Adamson
132,143 PointsThis challenge can be completed with a simple solution:
<?php $name = "Mike"; ?>
<?php echo $name; ?>
Jessica Rasmussen
1,889 PointsThank you Chris!
Ken Galvin
5,101 PointsO wow I just did the same thing by over thinking it, thanks for the help.
Jessica Rasmussen
1,889 PointsJessica Rasmussen
1,889 PointsThank you Marcus! This worked perfectly! I guess I was overthinking it.
Marcus Parsons
15,719 PointsMarcus Parsons
15,719 PointsYou're very welcome, Jessica. I think we all overthink stuff now and again, so it's good to get a fresh perspective in there sometimes :P Happy Coding!