Hi,
I've got the following type of date string parsed from an OFX file:
20090902000000[-5:EST]
How can I get this into my mysql db via php - formatted as d-m-Y
I've tried :
$ofxdate = strtotime("20090902000000[-5:EST]");
$stmtdate = date("d-m-Y",$ofxdate);
Obviously wrong! ... Any assistance appreciated!
How would I do this?