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

Eliron Giny
Eliron Giny
4,228 Points

php-variables challenge is unsolvable

It says echo Mike to screen and i can't do it

index.php
<?php 

$name = "Mike";

?>

<?php echo $name ?>

2 Answers

<?php $name = "Mike";
echo $name; ?>

i stuck that too..thx for the answer..

Daniel Peterson
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>