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

This activity isn't working for me - even with correct code.

It seems there might be a bug in this challenge? The code I've put in should work fine.

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

<?php echo $name ?>

1 Answer

If you put the echo in the same code block, it'll work. (And add a semi-colon)

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

Steve.

Thanks. It's odd that it didn't work with the way I originally entered it, but whatever works!

The tests behind the code challenges can be very specific and a bit overly-picky at times!!