Recently I reported a bug to PHP.net.
If you are using a PHP 5.x you will notice something very interesting… It no longer excepts mm-dd-YYYY, which is, in the U.S. anyway, common date format.
They told me that this isn’t a bug and just how it works now. I was more than a little displeased with this as I have written several applications that use the date format of mm-dd-YYYY and then use strtotime() to convert it then use date() to convert it into what MySQL excepts, which is dd-mm-YYYY.
Anyone else experience this or can say how they deal with date format conversions?