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 trialJoão Guedes
Courses Plus Student 752 PointsWhy it isn't working?
I try this code on the workspace and the name "Mike" appears on the screen. Am I doing something wrong?
<?php $name = "Mike"; ?>
<?php echo = $name ?>
1 Answer
João Guedes
Courses Plus Student 752 PointsAll the code should be in the same php tag, like this:
<?php $name = "Mike"; echo $name ?>
Gloria Dwomoh
13,116 PointsGloria Dwomoh
13,116 PointsHi Joao Guedes , I marked down your code as it wasn't appearing previously. If you want to know how I did it you can see the video on the right "Tips for asking questions".
Ps. A semicolon after "echo $name" will make the answer perfect.