mysqli_query() expects at least 2 parameters, 1 given(mysqli_query() 至少需要 2 个参数,1 个给定)
问题描述
这个 mysqli_query
命令导致下面的错误
mysqli_query("INSERT INTO `counter`.`hits` (`page_hits`) VALUES (1)");
<块引用>
警告:mysqli_query() 至少需要 2 个参数,其中 1 个给出
此错误消息是什么意思,如何解决?
您需要在页面前面的某个位置指定您与数据库建立的连接.您应该将该变量放入查询中.假设您创建了一个名为 $con
的变量.那么你的代码应该是这样的.
mysqli_query($con,"INSERT INTO `counter`.`hits` (`page_hits`) VALUES (1)");
This mysqli_query
command results in the error below
mysqli_query("INSERT INTO `counter`.`hits` (`page_hits`) VALUES (1)");
Warning: mysqli_query() expects at least 2 parameters, 1 given in
What does this error message mean, and how can it be fixed?
You need to specify the connection that you made to your database somewhere earlier in your page. You should put that variable in the query. Suppose you made a variable called $con
. Then your code should be like this.
mysqli_query($con,"INSERT INTO `counter`.`hits` (`page_hits`) VALUES (1)");
这篇关于mysqli_query() 至少需要 2 个参数,1 个给定的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:mysqli_query() 至少需要 2 个参数,1 个给定
基础教程推荐
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01