我想创建一个单独的连接页面,每次都可以配置一次这个页面,并且需要连接到mysql的所有页面都使用此页面?像wordpress一样,它只有一个配置页面。 如果是的话我该怎么做?
答案 0 :(得分:0)
您只需创建一个connection.php,然后在该页面中输入您的连接函数:
$connection = mysql_connect(DB_SERVER,DB_USERNAME,DB_PASSWORD);
if (!$connection) {
die("Database connection failed: " . mysql_error());
}
$db_select = mysql_select_db(DB_NAME,$connection);
if (!$db_select) {
die("Database selection failed: " . mysql_error());
}
//and any other config
然后您可以在任何您想要的页面中轻松完成此操作:
require_once("connection.php")
或
include("connection.php");
答案 1 :(得分:0)
<php
$connection = new mysqli ('SERVER','DB_USERNAME','DB_PASS','DB');
$connection -> set_charset('UTF-8');
if ($connection->connect_errno)
{
printf ('Connect failed: %s\n', $connection->connect_error);
exit();
}
你在connection.php中所需要的一切。你可以用
包含它include('connection.php');
你可以找到很多关于mysqli的教程!