Como comparar duas datas em php se as datas estiverem no formato '03_01_12'
e '31_12_11'
.
Estou usando este código:
$date1=date('d_m_y');
$date2='31_12_11';
if(strtotime($date1) < strtotime($date2))
echo '1 is small ='.strtotime($date1).','.$date1;
else
echo '2 is small ='.strtotime($date2).','.$date2;
Mas não está funcionando ..