1
mirror of https://github.com/jakejarvis/spoons.git synced 2025-06-29 03:15:40 -04:00
Files
spoons/db_connect.php
2013-05-19 11:51:36 -04:00

6 lines
132 B
PHP

<?php
mysql_connect($db_host, $db_user, $db_pass);
mysql_select_db($db_name);
mysql_query('SET time_zone = "America/New_York"');
?>