<small id='1Door'></small><noframes id='1Door'>

      <i id='1Door'><tr id='1Door'><dt id='1Door'><q id='1Door'><span id='1Door'><b id='1Door'><form id='1Door'><ins id='1Door'></ins><ul id='1Door'></ul><sub id='1Door'></sub></form><legend id='1Door'></legend><bdo id='1Door'><pre id='1Door'><center id='1Door'></center></pre></bdo></b><th id='1Door'></th></span></q></dt></tr></i><div id='1Door'><tfoot id='1Door'></tfoot><dl id='1Door'><fieldset id='1Door'></fieldset></dl></div>
      <legend id='1Door'><style id='1Door'><dir id='1Door'><q id='1Door'></q></dir></style></legend>

        <bdo id='1Door'></bdo><ul id='1Door'></ul>
      1. <tfoot id='1Door'></tfoot>
      2. 警告:mysqli_query() 期望参数 1 是 mysqli,字符串在

        时间:2023-07-29
      3. <tfoot id='heAzO'></tfoot>
        <i id='heAzO'><tr id='heAzO'><dt id='heAzO'><q id='heAzO'><span id='heAzO'><b id='heAzO'><form id='heAzO'><ins id='heAzO'></ins><ul id='heAzO'></ul><sub id='heAzO'></sub></form><legend id='heAzO'></legend><bdo id='heAzO'><pre id='heAzO'><center id='heAzO'></center></pre></bdo></b><th id='heAzO'></th></span></q></dt></tr></i><div id='heAzO'><tfoot id='heAzO'></tfoot><dl id='heAzO'><fieldset id='heAzO'></fieldset></dl></div>

          <tbody id='heAzO'></tbody>

        <small id='heAzO'></small><noframes id='heAzO'>

          <bdo id='heAzO'></bdo><ul id='heAzO'></ul>

            • <legend id='heAzO'><style id='heAzO'><dir id='heAzO'><q id='heAzO'></q></dir></style></legend>

                • 本文介绍了警告:mysqli_query() 期望参数 1 是 mysqli,字符串在的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我收到警告:

                  警告:mysqli_query() 期望参数 1 是 mysqli,在第 6 行的 (...) 中给出的字符串

                  Warning: mysqli_query() expects parameter 1 to be mysqli, string given in (...) on line 6

                  我的代码在这里:

                  <?php
                  
                  require_once 'conn.php';
                  
                  $sql = "SELECT user_id, access_lvl, name FROM cms_users ";
                  $result = mysqli_query($sql, $conn);
                  

                  推荐答案

                  这与您错误地将参数传递给 mysqli_query() 时的错误状态完全一样.假设 $conn 是您在某个时候由 new mysqli() 生成的 mysqli 连接,它应该是:

                  It's exactly as the error states as you're passing arguments to mysqli_query() incorrectly. Assuming $conn is your mysqli connection generated at some point by new mysqli() it should be:

                  $result = mysqli_query( $conn,$sql) or trigger_error(mysqli_error($conn)));
                  

                  你调用它的方式是传递一个字符串,$sql 作为第一个参数.

                  The way you were calling it you were passing a string, $sql as the first argument.

                  这篇关于警告:mysqli_query() 期望参数 1 是 mysqli,字符串在的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:在这个 php 配置中是否启用了 mysqli 扩展? 下一篇:致命错误:在非对象上调用成员函数 prepare()

                  相关文章

                  最新文章

                  • <bdo id='EVRm2'></bdo><ul id='EVRm2'></ul>

                  1. <i id='EVRm2'><tr id='EVRm2'><dt id='EVRm2'><q id='EVRm2'><span id='EVRm2'><b id='EVRm2'><form id='EVRm2'><ins id='EVRm2'></ins><ul id='EVRm2'></ul><sub id='EVRm2'></sub></form><legend id='EVRm2'></legend><bdo id='EVRm2'><pre id='EVRm2'><center id='EVRm2'></center></pre></bdo></b><th id='EVRm2'></th></span></q></dt></tr></i><div id='EVRm2'><tfoot id='EVRm2'></tfoot><dl id='EVRm2'><fieldset id='EVRm2'></fieldset></dl></div>
                  2. <legend id='EVRm2'><style id='EVRm2'><dir id='EVRm2'><q id='EVRm2'></q></dir></style></legend>
                      <tfoot id='EVRm2'></tfoot>

                    1. <small id='EVRm2'></small><noframes id='EVRm2'>