Jump to content

Set timezone


johnnyk

Recommended Posts

I've asked this question before but have never gotten an answer:

So I want to set the timezone for MySQL. mysql.org says I should use this:
mysql> SET GLOBAL time_zone = timezone;

But what do I do with that? I tried inserting it into .htaccess and I tried using mysql_query(SET GLOBAL time_zone = timezone;) in PHP, but neither worked. What do I do?
Link to comment
https://forums.phpfreaks.com/topic/14062-set-timezone/
Share on other sites

In the shell, if you use Linux, you could do something like this: [code]daniel@daniel:~$ mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 36 to server version: 5.0.22-Debian_0ubuntu6.06-log

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> SET GLOBAL time_zone = '+1:00';[/code]

Or in PHP you could do it in this way: [code]<?php
$link = mysql_connect("localhost","root","password");
mysql_query("SET GLOBAL time_zone = '+1:00';");
?>[/code]

These examples will set the timezone to GMT+1 (CET).
Link to comment
https://forums.phpfreaks.com/topic/14062-set-timezone/#findComment-55176
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.