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 trialJEFFERSON DCRUZ
Courses Plus Student 7,772 PointsCreate a PHP Code Block with a Variable called "name" inside of that block and set it equal to "Mike".
This is the challenge
My solution was
$name="Mike";
<?php echo $name ?>
It returns an error saying. Make sure you call; your variable $name
$name="Mike";
<?php echo $name ?>
3 Answers
John Lukacs
26,806 PointsI don't think you need a $ sign when calling it. I mean take out the second dollar sign.
John Lukacs
26,806 Pointsyeah its been a while since I touched php looking at it now
Matthew Calbeck
5,094 PointsI think you need to assign your $name variable inside of the PHP tags. Also, you would need to end your echo statement with a semi-colon.
JEFFERSON DCRUZ
Courses Plus Student 7,772 PointsYou right Matthew.
Thanks
JEFFERSON DCRUZ
Courses Plus Student 7,772 PointsJEFFERSON DCRUZ
Courses Plus Student 7,772 PointsThanks for the quick reply.
The problem was, the challenge needed variable to be created inside PHP code instead. and Call it. What I did was I created it outside and called it inside the php tags
That solved the problem