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

Brian Platt
Brian Platt
5,009 Points

Make Sure You Call Your Variable $name

I keep seeing "Make Sure You Call Your Variable $name" but my variable is $name = "Mike";

index.php
$name = "Mike";

1 Answer

You are correct in how you have established it, but because you have not properly enclosed it in PHP tags it is not recognized as a PHP variable. Remember that to execute PHP, it must be contained within PHP opening and closing tags, like so:

<?php
$name = "Mike";
?>
Brian Platt
Brian Platt
5,009 Points

It workedβ€”but it didn't earlier, thanks!