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

Now echo Mike's Name To The Screen.

what is wrong?

index.php
<?php

$name = "Mike";
echo $name;

?>

<p><?php echo; ?></p>
Fernando Aguilar
Fernando Aguilar
31,845 Points

You need to put something (like your var $name) after the echo to print it out on the p tag. Like this:

<p><?php echo $name; ?></p>

2 Answers

Emma Willmann
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Emma Willmann
Treehouse Project Reviewer

You don't need to add paragraph tags and a separate set of php tags. all you need is the first set of code:

<?php 
  $name = "Mike";
  echo $name;
?>
Blaž Hvala
Blaž Hvala
2,563 Points

<?php

$name = "Mike";

?>

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

i did this and it's not working for me, why?