How to set time in php?
<?php
date_default_timezone_set("Spain/Madrid");
$date=date("H:i:s");
echo $date;
?>
How to set date to my location?
I get this when I run the script Note: date_default_timezone_set () [function.date-default-timezone-set]: The timezone ID "Espana / Madrid" is not valid
I know that Spain / Madrid is not recognized, but how can I fix it?
+3
7 answers