Hi everyone
I want to set timezone (US/Central). It is working fine on my local computer but when I upload the code on web server It is giving me error
Fatal error: Call to undefined function: timezone_open() in
Here is the code
If anyone could help me
Regards
I want to set timezone (US/Central). It is working fine on my local computer but when I upload the code on web server It is giving me error
Fatal error: Call to undefined function: timezone_open() in
Here is the code
Code:
$tz1 = timezone_open("US/Central");
$ts = date_create("2008-08-19 12:19:21", $tz1);
echo $ts->format(DATE_RFC822), "<br/>";$ts->setTimezone($tz1);
Regards
Comment