Fixed issues with setup.php

This commit is contained in:
root
2019-06-11 14:53:44 -04:00
parent 99e7307c62
commit f06a66887d
6 changed files with 103 additions and 93 deletions

12
config.old.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
//DB Settings
$dbhost = "localhost";
$dbusername = "root";
$dbpassword = "password";
$database = "pittpc";
$mysqli = mysqli_connect($dbhost, $dbusername, $dbpassword, $database);
include("get_settings.php");
?>