Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Ewen Kennedy
1,769 PointsHow to add ',' into date ()
echo 'Today is ' . date(f,d,Y);
How would you get this to read Today is November 27, 2017?
<?php
//Place your code below this comment
echo 'Today is ' . date(f,d,Y);
?>
2 Answers

Dave StSomeWhere
19,822 PointsIt needs to be in quotes. Check the samples in the documentation to see all the different options.
<?php
//Place your code below this comment
echo "\n" . 'Today is ' . date('F d,Y') . "\n";

Ewen Kennedy
1,769 PointsThanks for the help Dave.