|
发表于 2005 年 6 月 28 日 17:12:43
|
显示全部楼层
define('DB_NAME', '数据库名'); // The name of the database
define('DB_USER', '用户名'); // Your MySQL username
define('DB_PASSWORD', '密码'); // ...and password
define('DB_HOST', '主机'); // 99% chance you won't need to change this value
// Change the prefix if you want to have multiple blogs in a single database.
$table_prefix = 'wp_'; // example: 'wp_' or 'b2' or 'mylogin_' |
|