Konversi DD/mm/yyyy menjadi yyyy-mm-dd di mysql php
$var = '20/04/2012';
$date = str_replace('/', '-', $var);
echo date('Y-m-d', strtotime($date));
Ankur
$var = '20/04/2012';
$date = str_replace('/', '-', $var);
echo date('Y-m-d', strtotime($date));
<?php
// both lines output 813470400
echo strtotime("19951012"), "\n",
strtotime("12 October 1995");
// prints 1995 Oct 12
echo date("Y-m-d", strtotime("19951012"));
?>