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

why it give me error ? the output is right !!

it tell me that i should use the date function and i did.

index.php
<?php

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

2 Answers

Try putting the function next to the arguments like so:

echo 'Today is '. date("F d, Y");
Daniel Stopka
Daniel Stopka
13,520 Points

Hi, do not remove the first echo statement - echo 'Today is '; and write the piece of the code bellow comment //Place your code below this comment... So you will need new echo statement with just a date function and you should be good to go...