Ver Mensaje Individual
  #3 (permalink)  
Antiguo 02/05/2011, 13:05
jonyou
 
Fecha de Ingreso: abril-2011
Ubicación: MEXICO
Mensajes: 42
Antigüedad: 13 años
Puntos: 0
Respuesta: Comparar fechas y horas

Cita:
Iniciado por Sotelio Ver Mensaje
Hola

Prueba con strtotime()
http://php.net/strtotime

Código PHP:
$fecha1 "2010-03-01 02:04:10";
$fecha2 "2010-03-01 02:20:10";


if (
strtotime($fecha1) > strtotime($fecha2)) {
   echo 
"SI";

Suerte
Sotelio
Gracias, y para la hora es lo mismo?