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 trial

PHP PHP Basics (Retired) PHP Data & Structure PHP Variables

Jessica Rasmussen
Jessica Rasmussen
1,889 Points

How 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.

index.php
<?php $name = "Mike"; ?>

<!DOCTYPE html>
<html>
  <head>
    <meta charset=utf-8>
  </head>

  <body>
    <section>
      <?php echo $name ?>
    </section>
  </body>
</html>

3 Answers

Hey 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;
?>
Jessica Rasmussen
Jessica Rasmussen
1,889 Points

Thank you Marcus! This worked perfectly! I guess I was overthinking it.

You'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!

Chris Adamson
Chris Adamson
132,143 Points

This challenge can be completed with a simple solution:

<?php $name = "Mike"; ?>
<?php echo $name; ?>
Ken Galvin
Ken Galvin
5,101 Points

O wow I just did the same thing by over thinking it, thanks for the help.