Checkout this out- http://php.net/manual/en/function.date-create.php
<?php
$test = new DateTime('02/31/2011');
echo date_format($test, 'Y-m-d H:i:s'); // 2011-03-03 00:00:00
$test = new DateTime('06/31/2011');
echo date_format($test, 'Y-m-d H:i:s'); // 2011-07-01 00:00:00
?>
You can feed the DateTime() constructor a string that is similar to what Facebook returns and then use that object to format the date format that you need.
Alternatively, if you want an option consisting only of a MYSQL solution, you could simply pass the original date through STR_TO_DATE and feed it the current format. That will format the date for you in the correct way for a DATE field type.
INSERT INTO `test` ( `date` )
VALUES (
STR_TO_DATE( '02/03/1942', '%d/%m/%Y' )
)
Check out the documentation of STR_TO_DATE() for more details.