MySQL stores dates in a yyyy-mm-dd numerical format.
I need the dates to be recalled in the fallowing format %d %b %Y i.e 6 Sep 2016
What I trying to think about how to handle is how to make sure if a date is entered that it post correctly in the right format to MySQL
so if the data is entered in any format it is recorded correct in SQL database.
For example US users would default enter dates 9/6/2016 even though our format is supposed to be 9 Sep 2016. MySQL seems not to handle numerical variations as well as I had hoped.
What's the best/efficient way to handle this short up using a calendar picker tool?