mirror of
https://gitlab.com/ruany/litebans-php.git
synced 2025-07-10 07:47:34 +00:00
Update database.php
This commit is contained in:
parent
015618bdb7
commit
f933641a8d
@ -1,8 +1,15 @@
|
|||||||
<?php
|
<?php
|
||||||
|
// Server host
|
||||||
$dbhost = 'localhost';
|
$dbhost = 'localhost';
|
||||||
$dbuser = 'root';
|
|
||||||
$dbpass = 'password';
|
// Username/password
|
||||||
$conn = new mysqli($dbhost, $dbuser, $dbpass, 'litebans');
|
$username = 'root';
|
||||||
|
$password = 'password';
|
||||||
|
|
||||||
|
// Database name
|
||||||
|
$database = 'litebans';
|
||||||
|
|
||||||
|
$conn = new mysqli($dbhost, $username, $password, $database);
|
||||||
|
|
||||||
$table_prefix = "";
|
$table_prefix = "";
|
||||||
$table_bans = $table_prefix . "bans";
|
$table_bans = $table_prefix . "bans";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user