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 trialBrendo Brownley
3,059 PointsDifficulty with date() function
Not sure why it says I'm doing it wrong... I'm using the date() function, I used the correct formats, the output looks the same as what it's asking me for. Am I just missing something completely obvious?
<?php
echo 'Today is ';
//Place your code below this comment
echo date("F d, Y",time());
?>
2 Answers
Jason Anders
Treehouse Moderator 145,860 PointsHi Brendo,
You're really close, but there seems to be some confusion happening there.
You are pretty much using the date method
correctly, and inputting the correct parameters, until you attach a call to the time function
as a fourth parameter to the date method
, which is incorrect and not even asked for?
If you just delete that, the rest of your code is correct and passes the challenge.
echo date("F d, Y");
Keep Coding! :)
Brendo Brownley
3,059 PointsAwesome! Thank you :D