连接mysql用mysql_connect不能连接
程序员文章站
2022-06-23 16:48:00
用mysqli_connect就可以解决。 mysqli_array()有连个参数,第一个是连接mysql名。 php遇到这个警告Warning: Use of undefined constant title - assumed 'title' (this will throw an Error ......
用mysqli_connect就可以解决。
mysqli_array()有连个参数,第一个是连接mysql名。
php遇到这个警告warning: use of undefined constant title - assumed 'title' (this will throw an error in a future version of php)可以通过error_reporting(0);解决。
主要的问题是数据库中括号[]需要加引号。
遇到这样的错误fatal error: uncaught error: call to undefined function mysql_connect()
解决如下:
1.mysql没有正常连接
2.如果mysql正常的话还是连接错误,把mysql_connect()换成mysqli_connect()
推荐阅读
-
node连接数据库如何输出(前端js连接mysql数据库的方法)
-
Mysql 出现故障应用直接中断连接导致数据被锁(生产故障)详解
-
Ubuntu16.04 server下配置MySQL,并开启远程连接的方法
-
JSP 连接MySQL配置与使用
-
阿里云ECS云服务器(linux系统)安装mysql后远程连接不了(踩坑)
-
详解MySQL开启远程连接权限
-
Mysql SSH隧道连接使用的基本步骤
-
sqlserver、mysql获取连接字符串步骤
-
PHP下使用mysqli的函数连接mysql出现warning: mysqli::real_connect(): (hy000/1040): ...
-
用sqlalchemy构建Django连接池的实例