mirror of
https://github.com/itflow-org/itflow
synced 2026-03-29 16:55:37 +00:00
12 lines
214 B
PHP
12 lines
214 B
PHP
<?php
|
|
|
|
$dbhost = "localhost";
|
|
$dbusername = "admin_crm";
|
|
$dbpassword = "password";
|
|
$database = "admin_crm";
|
|
|
|
$mysqli = mysqli_connect($dbhost, $dbusername, $dbpassword, $database);
|
|
|
|
include("get_settings.php");
|
|
|
|
?>
|