PDOException: SQLSTATE[HY000] [2002] No such file or directory

前端 未结 10 2148
太阳男子
太阳男子 2020-12-05 11:19

I have put PushChatServer dir in htdocs folder and create database puschat try to run @\"http://localhost/PushChatServer/api/test/database.php\"

Then I got following

10条回答
  •  佛祖请我去吃肉
    2020-12-05 11:34

    I had the same error for Mysql PDO, this code works for me!

     'SET NAMES utf8',
    ); 
    
    $dbh = new PDO($dsn, $username, $password, $options);
    ?>
    

    got this code from : http://php.net/manual/en/ref.pdo-mysql.connection.php

提交回复
热议问题