[insert_php]
$now = time();
$your_date = strtotime(‘2005-02-19’);
$datediff = $now – $your_date;
echo floor($datediff/(60*60*24));
[/insert_php]