First commit of biketree to github!

This commit is contained in:
Jonathan Rosenbaum
2017-09-05 03:39:54 +00:00
commit 8ca61d45eb
175 changed files with 24173 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
<?
// OLD CODE DATABASE SHIT
include ("../settings.php");
$db_host = $cfg_server;
$db_user = $cfg_username;
$db_pwd = $cfg_password;
$database = $cfg_database;
if (!mysql_connect($db_host, $db_user, $db_pwd))
die("Can't connect to database");
if (!mysql_select_db($database))
die("Can't select database");
?>