Ver Mensaje Individual
  #4 (permalink)  
Antiguo 26/03/2008, 15:46
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 17 años, 11 meses
Puntos: 2135
Re: Sumar fechas ????

Prueba poner esto así:
Código PHP:
$resSQL=mysql_query("SELECT DATE_ADD(fecha, INTERVAL 3 YEAR) AS 'N_fecha' FROM table_name  WHERE N_fecha='"fecha"'"$link) or die( mysql_error() );
            
$row2=mysql_fetch_array($resSQL);
            
$fecha=$row2['N_fecha']; 
Saludos.