mirror of
https://github.com/jakejarvis/spoons.git
synced 2025-04-26 19:18:28 -04:00
12 lines
266 B
PHP
12 lines
266 B
PHP
<?php
|
|
// Create connection
|
|
$conn = mysqli_connect($db_host, $db_user, $db_pass, $db_name);
|
|
|
|
// Check connection
|
|
if (!$conn) {
|
|
die("Connection failed: " . mysqli_connect_error());
|
|
}
|
|
|
|
mysqli_query($conn, 'SET time_zone = "' . $timezone_name . '"');
|
|
?>
|