Undefined function mysql_connect()

后端 未结 14 938
庸人自扰
庸人自扰 2020-11-22 10:56

I have ran aptitude install php5-mysql (and restarted MySQL/Apache 2), but I am still getting this error:

Fatal error: Call to undefined

14条回答
  •  孤城傲影
    2020-11-22 11:14

    Well, this is your chance! It looks like PDO is ready; use that instead.

    Try checking to see if the PHP MySQL extension module is being loaded:

    
    

    If it's not there, add the following to the php.ini file:

    extension=php_mysql.dll
    

提交回复
热议问题