Ver Mensaje Individual
  #2 (permalink)  
Antiguo 07/07/2005, 05:29
Avatar de Seppo
Seppo
 
Fecha de Ingreso: marzo-2005
Ubicación: Buenos Aires, Argentina
Mensajes: 1.284
Antigüedad: 19 años, 1 mes
Puntos: 17
http://ar.php.net/manual/es/function.checkdate.php
int checkdate ( int month, int day, int year )
Código PHP:
$fecha "2005/07/31";
$datos_fecha explode("/",$fecha);
if (
checkdate($datos_fecha[1],$datos_fecha[2],$datos_fecha[0])) {
  echo 
"La fecha es válida";