Codice PHP:
<?php
$adesso 
strtotime('now');
$data strtotime('2006-10-13 11:05:00');
$diff_secondi $adesso $data;
echo 
$diff_secondi;
?>