mirror of
https://github.com/LyLme/lylme_spage.git
synced 2024-11-17 22:38:03 +08:00
10 lines
228 B
PHP
10 lines
228 B
PHP
<?php
|
|
/*数据库配置*/
|
|
$dbconfig=array(
|
|
"host" => "localhost", //数据库服务器
|
|
"port" => 3306, //数据库端口
|
|
"user" => "", //数据库用户名
|
|
"pwd" => "", //数据库密码
|
|
"dbname" => "", //数据库名
|
|
);
|
|
?>
|