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 trialshubham kandharkar
Courses Plus Student 2,338 PointsPHP Notice: Undefined offset: 1 in a2f4fea3-5f6c-42c4-b9d9-65563fca9282.php on line 70
Whenever i want to use date function in following manner it shows me the error which is mentioned in the question
date("F d,Y")
<?php
echo 'Today is ';
//Place your code below this comment
echo date("F d,Y");
?>
1 Answer
Corey Cramer
9,453 PointsStrange as it is adding a space where it expected it (between the comma and the year) resolved the issue.
shubham kandharkar
Courses Plus Student 2,338 Pointsshubham kandharkar
Courses Plus Student 2,338 PointsThank You, Sir