mirror of
https://gitlab.com/ruany/litebans-php.git
synced 2025-05-23 16:32:45 +00:00
10 lines
214 B
PHP
10 lines
214 B
PHP
<?php
|
|
$dbhost = 'localhost';
|
|
$dbuser = 'root';
|
|
$dbpass = 'password';
|
|
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
|
|
if (!$conn) {
|
|
die('Could not connect: ' . mysql_error());
|
|
}
|
|
mysql_select_db('litebans');
|
|
?>
|