Fakcon Posted November 28, 2009 Share Posted November 28, 2009 I need to increse 6hours more, and i don't know how??? <tr> <th>{ov_server_time}</th> <th colspan="3">{date_time}</th> </tr> Link to comment https://forums.phpfreaks.com/topic/183182-i-need-to-increse-6hours-more-and-i-dont-know-how/ Share on other sites More sharing options...
oni-kun Posted November 28, 2009 Share Posted November 28, 2009 You can set the default timezone of your server with the following code, Please place it at the top of your code: <?php date_default_timezone_set('America/Los_Angeles'); $script_tz = date_default_timezone_get(); if (strcmp($script_tz, ini_get('date.timezone'))){ echo 'Script timezone differs from ini-set timezone.'; } else { echo 'Script timezone and ini-set timezone match.'; } ?> If you do not know the code for your timezone you wish to select, find it here! http://www.php.net/manual/en/timezones.php Hope this is what you mean. Link to comment https://forums.phpfreaks.com/topic/183182-i-need-to-increse-6hours-more-and-i-dont-know-how/#findComment-966757 Share on other sites More sharing options...
Fakcon Posted November 28, 2009 Author Share Posted November 28, 2009 Tanks . i'm gona try it Link to comment https://forums.phpfreaks.com/topic/183182-i-need-to-increse-6hours-more-and-i-dont-know-how/#findComment-966933 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.