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

Laurentiu Borza
Laurentiu Borza
1,571 Points

How to echo Mike's name on the screen other than: <p><?php echo $name ?></p> where $name is set to Mike?

How to echo Mike's name on the screen other than:

<p><?php echo $name ?></p> where $name is set to Mike?

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

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

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

2 Answers

Gareth Borcherds
Gareth Borcherds
9,372 Points

I think you overcomplicated it. This works

<?php 
$name = "Mike";
echo $name;
?>
Jason Cullins
PLUS
Jason Cullins
Courses Plus Student 4,893 Points

you could use a print statement.

<p><?php print $name ?></p>