Hi,
I have a date coming from an XML feed that looks like this:
2/28/2003
I want to convert it into a MySQL friendly format....how would I do this?
My usual code isn't working for me:
$release = date('Y-m-d', strtotime($date));
Any coding help is appreciated.
Thanks.