Código PHP:
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$fecha1 = isset( $_POST['fecha_adq'] ) ? $_POST['fecha_adq'] : '';
$fecha2 = isset( $_POST['fecha_gar'] ) ? $_POST['fecha_gar'] : '';
$fecha1 = mysql_real_escape_string($fecha1);
$fecha2 = mysql_real_escape_string($fecha2);
if (preg_match("/[0-9]{1,2}\/[0-9]{1,2}\/([0-9][0-9]){1,2}/",$fecha1))
list($dia1,$mes1,$año1)=split("/",$fecha1);
if (preg_match("/[0-9]{1,2}-[0-9]{1,2}-([0-9][0-9]){1,2}/",$fecha1))
list($dia1,$mes1,$año1)=split("-",$fecha1);
if (preg_match("/[0-9]{1,2}\/[0-9]{1,2}\/([0-9][0-9]){1,2}/",$fecha2))
list($dia2,$mes2,$año2)=split("/",$fecha2);
if (preg_match("/[0-9]{1,2}-[0-9]{1,2}-([0-9][0-9]){1,2}/",$fecha2))
list($dia2,$mes2,$año2)=split("-",$fecha2);
$dif = mktime(0,0,0,$mes1,$dia1, $año1) - mktime(0,0,0, $mes2,$dia2,$año2);
if($dif<=0){
header("Location: error_fecha.php");
}
Código HTML:
<input name="fecha_gar" type="text" id="fecha_adq" style="cursor: text" onclick="ds_sh(this);" value="Haga clic aquí para escoger fecha." size="32" readonly="readonly" />
Código HTML:
<input name="fecha_adq" type="text" id="fecha_gar" style="cursor: text" onclick="ds_sh(this);" value="Haga clic aquí para escoger fecha." size="32" readonly="readonly" />