php:
$date = date("Y-m-d H:i:s",strtotime($line[modif]));
echo $date;
sql:
select date_trunc('second', now()::timestamp without time zone)
php:
$date = date("Y-m-d H:i:s",strtotime($line[modif]));
echo $date;
sql:
select date_trunc('second', now()::timestamp without time zone)
echo date('Y-m-d h:i:s', strtotime ("2008-01-01 +".rand(1,60)."days ".rand(1,23). " hours ".rand(1,59)." minutes ".rand(1,59)." seconds")), "<br>";