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

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

      <legend id='h2g3R'><style id='h2g3R'><dir id='h2g3R'><q id='h2g3R'></q></dir></style></legend>

      如何计算查询结果行数?

      时间:2023-07-31

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

            <legend id='wU5zc'><style id='wU5zc'><dir id='wU5zc'><q id='wU5zc'></q></dir></style></legend>

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

                  <tbody id='wU5zc'></tbody>
                本文介绍了如何计算查询结果行数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                我应该用什么替换代码来验证如果查询结果行是 = 1"?
                我已经尝试了很多使用 num_rows 的方法,但它不起作用.

                我的 PHP 代码:

                What should I replace 'CODE TO VERIFY IF QUERY RESULT ROW IS = 1' for?
                I've tried many ways using num_rows but it won't work.

                My PHP code:

                    $con=mysqli_connect("localhost","mbrconsu_un394x","y1cz9,rd+hf6","mbrconsu_mmx");
                
                    if (mysqli_connect_errno($con))
                    {
                        echo "Failed to connect to MySQL: " . mysqli_connect_error();
                    }
                
                    $usuario = $con->real_escape_string($_GET['usuario']);
                    $senha = $con->real_escape_string($_GET['senha']);
                
                        $query = mysqli_query($con, "SELECT * FROM 'login' WHERE usuario = '$usuario' AND senha='$senha'");
                
                        if(CODE TO VERIFY IF QUERY RESULT ROW IS = 1){
                            while($row = mysqli_fetch_assoc($query)){
                                $db_username = $row['usuario'];
                                $db_password = $row['senha'];
                            }
                            if($usuario == $db_username && $senha == $db_password){
                                return true;
                            }
                            } else {
                            return false;
                        }
                
                    mysqli_close($con);
                ?>
                

                推荐答案

                $query->num_rows;
                

                mysqli_num_rows($query);
                

                这篇关于如何计算查询结果行数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:无法在给定上下文中返回结果集 下一篇:Php mysqi bind_param 变量数与准备好的语句中的参数

                相关文章

                最新文章

              1. <legend id='MeiZd'><style id='MeiZd'><dir id='MeiZd'><q id='MeiZd'></q></dir></style></legend>
                1. <tfoot id='MeiZd'></tfoot>

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

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

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