This commit is contained in:
mei 2024-11-02 13:15:35 +08:00
parent 242feb39ba
commit 828df3f622

13
core/db.php Normal file
View File

@ -0,0 +1,13 @@
<?php
$host = '1Panel-mysql-x'; // 数据库地址
$db = ''; // 数据库名
$user = ''; // 数据库用户名
$pass = ''; // 数据库密码
try {
$pdo = new PDO("mysql:host=$host;dbname=$db", $user, $pass);
$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
} catch (PDOException $e) {
echo "Connection failed: " . $e->getMessage();
}
?>