This repository has been archived on 2025-12-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
chatline/php/config.php
Andrew Trieu 5f98bab91e Finalize
2023-02-10 19:20:34 +02:00

11 lines
240 B
PHP

<?php
$hostname = "localhost:3200";
$username = "root";
$password = "";
$dbname = "chatline";
$conn = mysqli_connect($hostname, $username, $password, $dbname);
if (!$conn) {
echo "Database connection error" . mysqli_connect_error();
}
?>