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 PointsCode isn't passing
Hey so for this one my code isn't passing, <?php
$name = "Shirts 4 Mike"; $value = 20;
?>
Any suggestions? Thanks!
2 Answers
Stone Preston
42,016 PointsYou completed task 1 by assigning the name to the variable. Task 2 states: Add another command after this to display the value of the variable on the screen.
so to pass you need to echo your $name variable. you can echo the value of variables out like this:
$variable = "some variable";
echo $variable;
Brian Platt
5,009 PointsOk thanks, I just tried to copy the code from the lesson that had a variable for name and price. Thanks, it works now! Brian