Theres lots of ways of doing that, this is probaply the most stupid π
$date=explode("/",$yourdate,$date);
Now you got your date in pieces like this:
$date[0] is the day
$date[1] is the month
$date[2] is the year
Now we'll just put them together, so that it fits to mysql.
$date2="$date[2]-$date[1]-$date[0]";
So now its in correct format to insert to mysql.(yyyy-mm-dd)
Theres a better way of doing this but I have forgotten.. π
I think you could do the translation straight from mysql using DATEFORMAT, but as I said I dont remember just now.