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 trialBrian Platt
5,009 PointsMake Sure You Call Your Variable $name
I keep seeing "Make Sure You Call Your Variable $name" but my variable is $name = "Mike";
$name = "Mike";
1 Answer
mikes02
Courses Plus Student 16,968 PointsYou 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
5,009 PointsBrian Platt
5,009 PointsIt workedβbut it didn't earlier, thanks!