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 trial

PHP PHP Basics PHP on the Web Date Function

Darya Zata
Darya Zata
2,562 Points

date formatting

hello i dont understand why i cant pass this challenge ?

index.php
<?php
echo 'Today is';
//Place your code below this comment
echo date(' F d, Y ');

?>

it gives me feedback : You have not passed the correct string for formatting. Your date SHOULD return: November 21, 2017

but on preview i get exactly this output ??

1 Answer

Hy Daria, with your code, everything's fine. You just have to delete the space between the quotation marks and the letter. Otherwise, it would not be formatted in the same way as required by the task.

I hope I have been able to help you - Phil

echo date('F d, Y');