This is a PHP question. When I test this code
echo date("d-m-y h:i:S");
on my local server and on my hosted website (these two have different time zones) they return different datetime values,as expected. But when I try this code
echo mktime();
I see the same result on both servers.Does mktime() return the number of seconds from 1970 for a standard time zone,whatever your timezone is?
Thanks for your answers