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

Alan Jeronimo
Alan Jeronimo
1,220 Points

What Am I doing wrong ?

I am in this question:

Challenge Task 1 of 1

For this code challenge, you'll need to check out the documentation for the date function to see details about formatting. Use the date function to add today's date to the display message in the following format: full month, day of the month with leading 0, comma and 4 digit year. Example: Today is July 04, 2016

And the error is:

Bummer! You must use the built-in date function

But I read the documentation but i can't see what I am doing wrong :-/

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! I would say that you're not doing anything wrong at all. However, challenges can be extremely picky. While your code does produce the required result, they are looking for a very specific answer here. The answer they are expecting has one less space and a semicolon at the end of the line.

Take a look:

echo date("F d, Y");

Hope this helps! :sparkles:

Alan Jeronimo
Alan Jeronimo
1,220 Points

Hey Jennifer Nordell,

Thank you very much for your help! It worked pretty well.

You're awesome!!

See ya