Fatal error: Uncaught Error: Call to undefined function mysql_error() in C:\phpstudy_pro\WWW\sqli\sql-connections\sql-connect.php:10 Stack trace: #0 C:\phpstudy_pro\WWW\sqli\Less-1\index.php(15): include() #1 {main} thrown in C:\phpstudy_pro\WWW\sqli\sql-connections\sql-connect.php on line 10
时间: 2023-08-04 11:06:06 浏览: 159
php中连接mysql时出现Fatal error Call to undefined function mysql_connect()
5星 · 资源好评率100%
这个错误是由于在你的代码中调用了一个未定义的函数`mysql_error()`导致的。同样地,这个函数在新版本PHP中已经被弃用并移除了。相应的解决方法是使用mysqli或PDO来处理数据库错误。你可以尝试将错误处理函数替换为`mysqli_error()`或使用mysqli对象的错误处理方法来解决这个问题。确保你的代码中使用的是正确的错误处理函数或方法,并且数据库连接已经成功建立。
阅读全文