date2unix.php: pour convertir tout format de temps string → format unix / EPOC
<form method="GET"> <input type=text name=quand> <input type=submit> </form> <?php $quand=$_GET['quand']; if($quand==""||!isset($quand)) { echo strtotime("now"),"\n";; } echo strtotime($quand),"\n";; ?>