trouble connecting to MySql DB (PHP)

后端 未结 4 1597
故里飘歌
故里飘歌 2021-01-27 12:16

I have the following PHP code to connect to my db:



        
4条回答
  •  执笔经年
    2021-01-27 12:30

    Maybe your MySQL is not using TCP for localhost. Please try

    $host='/tmp/mysql.sock';
    

    or whatever socket it might be using.

提交回复
热议问题