I tried to set the timezone from the Query Window of PhpMyAdmin with:
SET time_zone = 'america/vancouver';
But I got an error: #1298 - Unknown or incorrect time zone: 'america/vancouver'.
'America/Vancouver' does not neither.
Thank you in advance!
$link = mysql_connect('localhost', 'username', 'password') or die("DB error #00");
$con = mysql_select_db("******_**", $link) or die('DB error #03.');
The database connection is passed, but database selection failed. The program is in the file timesheet/index.php.
Thanks in advance!