gpt4 book ai didi

php - 如何包含两个数据库连接?

转载 作者:太空宇宙 更新时间:2023-11-03 11:47:20 24 4
gpt4 key购买 nike

我在我的 PHP 文件中包含了 1 个数据库连接。连接到数据库的文件称为 connect.php。这工作成功,没有错误。当我尝试在我的 PHP 文件中包含 2 个数据库连接时,我遇到了错误。好像,我一次只能连接到一个数据库,因为只有 1 个数据库已连接。有没有办法在 1 个文件中包含 2 个数据库连接?

这是我现在拥有的:

<?php

require "connect.php";
require "informational-connect.php";

?>

这是包含在 connect.php 中的内容:

<?php
$db= new mysqli("localhost", "XXX", "XXX", "ARTICLES");

if($db->connect_errno)
{
die("Error");
}


?>

这是包含在 informational-connect.php 中的内容:

<?php
$db = new mysqli("localhost", "XXX", "XXX", "INFORMATION-DATA");

if ($db->connect_errno)
{
echo die("Error");
}
?>

我正在使用 MySQLi。

最佳答案

为了有不同的连接,你必须给连接变量不同的名字

此外,你只需要处理一个数据库,因此也只有一个连接

关于php - 如何包含两个数据库连接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37771362/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com