Cita:
Iniciado por iviamontes busca sobre datediff de mysql
gracias busque datediff en php.net y encontre esta funcion ya armada:
Código PHP:
<?php
$today = strtotime(date('Y-m-d H:i:s'));
echo $today."<br>";
$myBirthDate = strtotime("2011-02-30 13:00:00");
echo $myBirthDate."<br>";
printf("I'm %d days old.", round(abs($today-$myBirthDate)/60/60/24));
?>