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

William Shelton
William Shelton
12,633 Points

Solution not working? For PHP timestamps.

I have used the documentation to build the date format so that you know the full month, double digit date and four digit year. I have include an echo command but it still says that I need to include one?! Any ideas on what I need to do in order for the code to flow?

I have attached the variable to the initial echo at the top and have written a new echo statement out too all return the same output but they are not being accepted.

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

1 Answer

William Shelton
William Shelton
12,633 Points

Since resolved the issue. Rather than declaring a variable the solution required a single echo statement that included the date function.