16 lines
337 B
Bash
16 lines
337 B
Bash
<?php
|
|
// config.php.env - 数据库配置文件模板
|
|
// 请将此文件重命名为 config.php 并根据实际情况修改以下配置
|
|
|
|
// 数据库主机地址
|
|
$host = 'localhost';
|
|
|
|
// 数据库用户名
|
|
$username = 'your_username';
|
|
|
|
// 数据库密码
|
|
$password = 'your_password';
|
|
|
|
// 数据库名称
|
|
$database = 'carwash_booking';
|
|
?> |