config.php
来自「WEBGAME源码,有架设说明,只是非常简单」· PHP 代码 · 共 31 行
PHP
31 行
<?php
/////////////////////////////////////////////////////////////
// Please note that if you get any errors when connecting, //
// that you will need to email your host as we cannot tell //
// you what your specific values are supposed to be //
/////////////////////////////////////////////////////////////
// type of database running
// (only mysql is supported at the moment)
$dbservertype='mysql';
// hostname or ip of server
$servername='localhost'; //<--你使用的db的ip或网址
// username and password to log onto db server
$dbusername='root'; //<--连结db的帐号
$dbpassword='root'; //<--连结db的密码
// name of database
$dbname='wog'; //<--你使用的db名称
// technical email address - any error messages will be emailed here
$technicalemail='cqz78@qq.com'; //<--当有error讯息时所要寄发的email位子
// use persistant connections to the database
// 0 = don't use
// 1 = use
$usepconnect=0;
?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?