i try to echo the date but the date is one hour to early, i already changed the timezone in the ini but it doesnt work.
thats my code:
$year = date('y');
$month = date('m');
$day = date('d');
$hour = date('H');
$min = date('i');
$sek = date('s');
$date = $day . "." . $month . "." . $year . "/" . $hour . ":" . $min . ":" . $sek;
echo $date;
Thanks in advance!
Now i have 9:34 but the site shows me 8:34 after restart it doesnt work !