Amigo intenta esto:
TU CODIGO:
Código PHP:
$fecha1 = explode('/',$_POST['fecha1']);
$fecha2 = $fecha1[2].$fecha1[1].$fecha1[0];
echo date('Ymd', strtotime($fecha2));
EL QUE PROPONGO
Código PHP:
$fecha1 = explode('/',$_POST['fecha1']);
$fecha2 = $fecha1[2] . "-" . $fecha1[1] . "-" . $fecha1[0];
echo date('Ymd', strtotime($fecha2));