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 trialTerry Brooks
318 PointsPHP Basics Code Challenge: Date Function
Not Sure why this is not validated by the auto-grader, output is as expected.
<?php
echo 'Today is '. Date('F j, Y');
?>
1 Answer
Dalton Dunn
4,351 PointsIt looks like you are concatenating the strings together but they are asking for another echo command under the comment that says "Code here"
I was able to use that exact same code but with another echo command and it passed.