php - Database timezone -
php - Database timezone -
i want set different timezone different database on single cpanel(phpmyadmin).i don't know how set different timezone different database. please help me .. possible or not,
thanks in advance...
if using php / mysql. place next code @ top of page or index page.
date_default_timezone_set('timezone_name');
illustration america/new_york
only mysql (works current session)
mysql> set time_zone = 'timezone_name';
for global change
mysql> set global time_zone = 'timezone_name';
hope helps. thanks!!
php mysql sql phpmyadmin timezone
Comments
Post a Comment