<!DOCTYPE html>
<html>
<head>
<title>PHP: Dias para tu cimpleanos</title>
</head>
<body>
<?php
if (isset($_POST['mes'], $_POST['dia'], $_POST['anio']) == true) {
$mes = $_POST['mes'];
$dia = $_POST['dia'];
$anio = $_POST['anio'];
if (empty($mes) || empty($dia) || empty($anio)) {
echo '<strong> * Todos los campos son necesarios </strong>';
} else {
$t_dias = mktime(0, 0, 0, $mes, $dia, $anio);
$hoy = time();
$dif_dias = ($t_dias - $hoy);
$dias = (int) ($dif_dias / 86400);
print "Dias que faltan para tu cumpleaños:
<strong > $dias </strong> dias";
}
}
?>
<h3> Escribe tu fecha de cumpleaños </h3>
<form method="POST" action="">
Mes <br />
<input type="text" name="mes" /> <br />
Dia <br />
<input type="text" name="dia" /> <br />
Año <br />
<input type="text" name="anio" /> <br />
<input type="submit" name="calcular">
</form>
</body>
<html>
<html>
<head>
<title>PHP: Dias para tu cimpleanos</title>
</head>
<body>
<?php
if (isset($_POST['mes'], $_POST['dia'], $_POST['anio']) == true) {
$mes = $_POST['mes'];
$dia = $_POST['dia'];
$anio = $_POST['anio'];
if (empty($mes) || empty($dia) || empty($anio)) {
echo '<strong> * Todos los campos son necesarios </strong>';
} else {
$t_dias = mktime(0, 0, 0, $mes, $dia, $anio);
$hoy = time();
$dif_dias = ($t_dias - $hoy);
$dias = (int) ($dif_dias / 86400);
print "Dias que faltan para tu cumpleaños:
<strong > $dias </strong> dias";
}
}
?>
<h3> Escribe tu fecha de cumpleaños </h3>
<form method="POST" action="">
Mes <br />
<input type="text" name="mes" /> <br />
Dia <br />
<input type="text" name="dia" /> <br />
Año <br />
<input type="text" name="anio" /> <br />
<input type="submit" name="calcular">
</form>
</body>
<html>
2 comentarios
No funciona si mete una fecha atrás :(
ReplyPublicar un comentario