Inserting from a feed:
$sql = " INSERT INTO table SET
Start = '".mysql_real_escape_string( $record["START"] )."';
The feed of course displaying the "START" date, but as a text value, formatted:
mm-dd-yyyy
However looking to insert into a table datetime col:
yyyy-mm-dd
Can this conversion be done from such text values? If so how since I was not able to accomplish with strtotime.