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

Julien Rotundo
Julien Rotundo
10,018 Points

My date is returning in the correct format, but I can't pass this code quiz. Is there another way?

It seems to appear correctly.

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

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there! Yes, this does appear correctly. However, the challenge seems to be checking the string that you send into the date function as opposed to the output. You've put a \ before the comma, but commas don't need to be escaped and it's resulting the challenge seeing a string it shouldn't.

Simply removing the backslash causes this to pass the challenge.

Hope this helps! :sparkles: