mirror of
https://github.com/itflow-org/itflow
synced 2026-03-12 00:34:52 +00:00
12 lines
238 B
PHP
12 lines
238 B
PHP
<?php
|
|
//DB Settings
|
|
|
|
$dbhost = "localhost";
|
|
$dbusername = "root";
|
|
$dbpassword = "password";
|
|
$database = "pittpc";
|
|
|
|
$mysqli = mysqli_connect($dbhost, $dbusername, $dbpassword, $database);
|
|
|
|
include("get_settings.php");
|
|
?>
|