我正在尝试连接到我的mysql数据库,但是每次都会得到:
致命错误:/Applications/XAMPP/xamppfiles/htdocs/socialnetwork/create-account.php:3中没有消息'SQLSTATE [HY000] [1049]未知数据库'socialnetwork.spf'的未捕获异常'PDOException' />堆栈跟踪:
#0 /Applications/XAMPP/xamppfiles/htdocs/socialnetwork/create-account.php(3):PDO-> __ construct('mysql:host = 127 ....','root ','')
#1 {main}在第3行的/Applications/XAMPP/xamppfiles/htdocs/socialnetwork/create-account.php中抛出
您能帮我解决这个问题吗?我也包括了我使用的代码。预先感谢!
<?php
$pdo = new PDO('mysql:host=127.0.0.1;dbname=socialnetwork;charset=utf8', 'root', '');
$PDO->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION);
?>