Ver Mensaje Individual
  #4 (permalink)  
Antiguo 08/08/2006, 18:34
GoRaK
 
Fecha de Ingreso: julio-2005
Mensajes: 220
Antigüedad: 18 años, 8 meses
Puntos: 0
Tb te puede valer esto para sumar y restar fechas.

Código PHP:
<?php
$hoy
=date("d/m/Y");
$s=strtotime('-45 days',strtotime($hoy));
$fechaResta=date("d/m/Y",$s);
echo 
$fechaResta;
?>
Saludos!