0

如果我使用以下代码,它可以工作:

$con = mysql_connect("localhost","root","");
if (!$con)  {
  die('Could not connect: ' . mysql_error());
} 

但是当我这样做时,它不会:

$db_host='localhost';
$db_id='root';
$db_pass='';
$con = mysql_connect($db_host, $db_id, $db_pass);

if (!$con)  {
  die('Could not connect: ' . mysql_error());
} 

试图交换 (") 和 (')。

4

3 回答 3

0

尝试使用这样的脚本

$db_host = 'localhost'; 
$db_id = 'root'; 
$db_pass ='';
$con = mysql_connect ($ db_host, $ db_id, $db_pass) or die ('Could not connect:'. mysql_error ());
于 2012-11-22T11:08:13.947 回答
0

那个代码很好。查看错误日志 - 问题必须在该代码之外。

于 2012-11-22T12:17:25.383 回答
0

不鼓励 mysql_ 函数用于新应用程序a,建议您使用mysqliPDO。以下代码使用 PDO 连接到数据库。

//dependant on your setup
$host= "localhost";
$username="XXX";
$password="YYY";
$database="ZZZ";

// connect to the database  
try {  
    $dbh = new PDO("mysql:host=$host;dbname=$database", $username, $password);  
    //Remainder of code
  }  

catch(PDOException $e) {  
    echo "I'm sorry I'm afraid you can't do that.". $e->getMessage() ;// Remove or modify after testing 
    file_put_contents('PDOErrors.txt',date('[Y-m-d H:i:s]'). $e->getMessage()."\r\n", FILE_APPEND);//Change file name to suit  
}  
// close the connection
$dbh = null;
于 2012-11-22T12:19:26.713 回答