Ciao,
ho un piccolo problema:
Codice PHP:
$ttermine = time() + 180 * 60; // in teoria aggiugo 3 ore.
$ta = time();
$tempo = $ttermine - $ta;
$giorni = intval($tempo/86400);
$orerestanti = ($tempo - ($giorni * 86400));
$ore = intval($orerestanti/3600);
$minutirestanti = ($tempo - ($giorni * 86400) - ($ore * 3600));
$minuti = intval($minutirestanti/60);
$secondi = intval($tempo - ($giorni * 86400) - ($ore * 3600) - ($minuti * 60));
Il problema é che quando vado a stampare il tempo restante (giorni, ore, minuti, secondi) mi da 2 ore al posto di 3... come mai???
Grazie dell' aiuto,.... ciaoooo...