You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
487 B

3 years ago
<?php
// database host
$db_host = "localhost:3306";
// database name
3 years ago
$db_name = "shop";
3 years ago
// database username
3 years ago
$db_user = "root";
3 years ago
// database password
3 years ago
$db_pass = "123456";
3 years ago
// table prefix
$prefix = "dsc_";
$timezone = "PRC";
$cookie_path = "/";
$cookie_domain = "";
$session = "1440";
define('EC_CHARSET','utf-8');
define('ADMIN_PATH','admin');
define('AUTH_KEY', 'this is a key');
define('OLD_AUTH_KEY', '');
3 years ago
define('API_TIME', '2023-04-23 15:13:24');
3 years ago
?>