Ver Mensaje Individual
  #3 (permalink)  
Antiguo 18/02/2010, 20:35
pilucho
 
Fecha de Ingreso: noviembre-2004
Ubicación: NULL
Mensajes: 655
Antigüedad: 20 años
Puntos: 6
Respuesta: Mostrar los cumpleaños con php base de datos oracle

<?php
//calculate years of age (input string: YYYY-MM-DD)
function birthday ($birthday){
list($year,$month,$day) = explode("-",$birthday);
$year_diff = date("Y") - $year;
$month_diff = date("m") - $month;
$day_diff = date("d") - $day;
if ($day_diff < 0 ¦¦ $month_diff < 0)
$year_diff--;
return $year_diff;
}

?>