Hola. Me he atrancado con el incremento de días a una fecha. Por favor alguien puede ayudarme se lo agradecería, que soy novata y no me aclaro, he buscado en internet pero no me entero. Gracias¡¡
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>fechas </title>
</head>
<body>
<FORM class="borde" ACTION="" METHOD="POST" enctype="multipart/form-data">
<div id="form_bas">
FECHA: <input type="date" name="nombre" value="" /><BR/>
<?php
if (isset($_POST['nombre']) && trim($_POST['nombre']=="")){
echo "<span class='error'>Debes introducir una fecha</span><br>";
}
?>
DIAS: <input type="text" name="dias" value="" /><BR/>
<?php
if (isset($_POST['dias']) && trim($_POST['dias']=="")){
echo "<span class='error'>Debes introducir el numero de dias</span><br>";
}
?>
<INPUT TYPE="SUBMIT" name="aceptar" VALUE="ACEPTAR" />
<?php
$fecha=$_POST['nombre'];
$dias=$_POST['dias'];
?>
</FORM>
</div>
<?php
echo $fecha . "<br/>";
$dia= 1; // los días a sumar
$cont=1;
for($dia; $cont<=$dias; $cont++){
$fecha= date("d/m/Y", strtotime("$fecha+1 days"));
echo $fecha ;
echo "<br/>";
}
?>
</body>
</html>