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 CRUD Operations with PHP Reading and Writing Reports Working with Dates

please i need your help this is my code

When saving a date in a 'date' field, you need make sure the date is formatted properly. The correct format is YYYY-MM-DD.

Complete the function to convert a passed date into a SQL safe date and return the results using the following requirements:

Use the date() function to properly format the passed date.
Use the strtotime() function to accept anything from a date in a different format to a string like 'yesterday'.
index.php
<?php

function convert_date_sql($date) {
    //add your code here
  $date = strtotime($date);
  $date = date('yyyy-mm-dd',$date);
  return $date;

}

2 Answers

index.php
<?php

function convert_date_sql($date) {
  $date = strtotime($date);
  $date = date('Y-m-d',$date);
  return $date;

}

?>

return date("Y-m-d", strtotime($date));

Charles Fields
Charles Fields
4,205 Points

Wow, I was way over-thinking this!
Fortunately, I had heavy doubt of understanding the question so decided to check the forum before writing too much code.
Thanks, Victor!