mirror of
https://github.com/yanyuandi/7.5inch_Multifunctional_E-Paper.git
synced 2025-12-06 09:12:49 +08:00
8 lines
232 B
PHP
8 lines
232 B
PHP
<?php
|
|
// 连接数据库
|
|
$conn = new mysqli('你的服务器数据库地址', 'root', '数据库密码', '数据表名');
|
|
|
|
if ($conn->connect_error) {
|
|
die("连接失败: " . $conn->connect_error);
|
|
}
|
|
?>
|