5

我在连接到我拥有的网络主机上的数据库时遇到问题,我正在使用以下内容:

$dsn = 'mysql:host=mysql1.hosting.digiweb.ie;dbname=mydbname';
 $user = 'myusername';
 $password = 'mypassword';

根据网站:主机名mysql1.hosting.digiweb.ie(ip地址)

正如标题所说,我遇到了找不到驱动程序错误,我是否错误地输入了主机,我尝试输入上面的内容以及 IP 地址 - 谢谢!

编辑:

这是我所有的代码

<?php

 $dsn = 'mysql:host=localhost;dbname=';
 $user = '';
 $password = '';

try {
  // Connect and create the PDO object
 $dbh = new PDO($dsn, $user, $password);
 $dbh->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION);
}
catch(PDOException $e) {
 echo 'Database connection failed - ';
 echo $e->getMessage();
 exit;
}


echo 'works';
?>
4

2 回答 2

5

go to your php.ini file and uncomment this line

    extension=php_pdo_mysql.dll

and then restart your apache

于 2013-02-10T14:00:50.990 回答
3

在 php.ini 中将扩展目录更改为绝对目录。我把它从

extension_dir = "ext" 

extension_dir = "C:/{PATH TO PHP DIRECTORY}/ext"

它奏效了。

于 2016-01-21T18:30:48.007 回答