📄 mysql.inc.php
字号:
<?php
$conf = array
(
"hostname" => "localhost",
"username" => "dufhire",
"password" => "ipanelpass",
"database" => "dufhire"
);
$link = mysql_connect($conf['hostname'], $conf['username'], $conf['password']) or die("Unable to connect to the MySQL Database: " . mysql_error());
mysql_select_db($conf['database']) or die("Unable to connect to the MySQL Database: " . mysql_error());
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -