Ver Mensaje Individual
  #4 (permalink)  
Antiguo 30/11/2013, 15:57
cristiangd00
 
Fecha de Ingreso: octubre-2013
Ubicación: Asturias
Mensajes: 52
Antigüedad: 10 años, 6 meses
Puntos: 1
Respuesta: Duda de sumar fecha

Cita:
Iniciado por martin_9_91 Ver Mensaje
En la ayuda de php hay ejemplos

http://php.net/manual/es/datetime.add.php

Algo así no te sirve?

Código PHP:
Ver original
  1. $fecha = new DateTime('2000-01-01');
  2. $fecha->add(new DateInterval('P10D'));
  3. echo $fecha->format('Y-m-d') . "\n";
No me sirve porque la fecha debe de ser introducida por el usuario