18 lines
392 B
PHP
Executable File
18 lines
392 B
PHP
Executable File
<?php
|
||
// 数据库配置
|
||
$host = 'localhost';
|
||
$dbname = '';
|
||
$username = '';
|
||
$password = '';
|
||
|
||
// 创建数据库连接
|
||
$conn = new mysqli($host, $username, $password, $dbname);
|
||
|
||
// 检查连接是否成功
|
||
if ($conn->connect_error) {
|
||
die("数据库连接失败: " . $conn->connect_error);
|
||
}
|
||
|
||
// 设置字符集为 utf8mb4(支持中文)
|
||
$conn->set_charset("utf8mb4");
|
||
?>
|