好的,所以我正在使用以下代码将表存储在变量中:

<?php
$host = "localhost";
$user  = "x";
$password =  "x";

try {
    $account = new PDO("mysql:host=$host;dbname=account", $user, $password);
} catch(PDOException $e) {
    die('connection cant be made');
}

try {
    $player = new PDO("mysql:host=$host;dbname=player", $user, $password);
} catch(PDOException $e) {
    die('connection cant be made');
}


我得到的所有信息都是“无法建立连接”。所以我找到了另一个代码,然后切换到它,一切正常。

<?php
$host = "localhost";                    // Ip-ul de la server
$user= "xx";                            // User-ul de conectare la database
$password = "xx";                       // Parola de conectare la database
mysql_connect($server, $user, $password) or die(mysql_error());
mysql_select_db('account');
mysql_set_charset('utf8');


?>
但是现在我没有为$ account和$ player分配任何数据库,并且我无法正常使用我的网站。有想法吗?

最佳答案

$e中,您有理由无法连接数据库。捕获异常,不执行任何操作...

<?php
define('__DEBUG', true);


try {
    $account = new PDO("mysql:host=$host;dbname=account", $user, $password);
} catch(PDOException $e) {
    if(__DEBUG) {
        print $e->getMessage();
    }
    die('connection cant be made');
}


使用(不是so ^)旧方式的2个连接:

$con1 = mysqli_connect();
$con2 = mysqli_connect();
mysqli_query('query', $con1);
mysqli_query('query', $con2);


^使用mysqli_代替mysql_

08-05 07:02