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 trialLamorna Read
1,604 Pointsit keeps saying bummer you forgot echo command when ive put in the echo command
please tell me if ive done it wrong
<?php
echo 'Today is ';
//Place your code below this comment
$today = date('F d, Y');
echo "$today";
?>
2 Answers
Steven Parker
231,186 PointsI don't think the challenge is expecting a new variable to be created. Try echoing the date directly with just one new line of code.
Lamorna Read
1,604 Pointsthank you that helped