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

View File

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