<legend id='LRZ47'><style id='LRZ47'><dir id='LRZ47'><q id='LRZ47'></q></dir></style></legend>
    • <bdo id='LRZ47'></bdo><ul id='LRZ47'></ul>
      <tfoot id='LRZ47'></tfoot>

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

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

      统计数据库中的注册用户

      时间:2023-07-16
          <bdo id='orqjG'></bdo><ul id='orqjG'></ul>

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

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

              <tbody id='orqjG'></tbody>
            <legend id='orqjG'><style id='orqjG'><dir id='orqjG'><q id='orqjG'></q></dir></style></legend>
              1. <tfoot id='orqjG'></tfoot>
                本文介绍了统计数据库中的注册用户的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我想回应在我的网站上注册的人数只有我拥有的代码不起作用,它告诉我它不可能转换为字符串.此外,当我将其设置为在 HTML 中调用的函数时,我收到 $connection 未定义的错误

                I would like to echo the number of people registered on my website only the code that I have does not work, it gives me back that it can't be converted to string. Also when I make it a function to call in my HTML I get error that $connection is undefined

                require_once("connect.php");
                
                $sql = "SELECT * FROM persons";
                if ($result=mysqli_query($connection, $sql)){
                $rowcount = mysqli_num_rows($result);
                mysqli_free_result($result);
                return $result;}
                

                如何在我可以在打印注册人数的页面上调用的函数中获取此信息?

                How do I get this in a function that I can call on my page that prints the number of people registered?

                推荐答案

                首先你应该使用 count 因为速度问题:

                First of all you should use count because of speed issues:

                $sql = "SELECT COUNT(id) FROM persons";
                

                要编写一个返回数字的函数,您可以执行类似的操作

                To write a function that returns the number, you can do something like

                function registredMemberCount ($connection) 
                {
                    $sql = "SELECT COUNT(id) FROM persons";
                    $result = mysqli_query($connection,$sql);
                    $rows = mysqli_fetch_row($result);
                    return $rows[0];
                }
                

                并用

                registredMemberCount($connection);
                

                这篇关于统计数据库中的注册用户的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:我需要在 csv 列中获取值的计数(分组) 下一篇:PHP计数目录和子目录中的总文件功能

                相关文章

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

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

                    • <bdo id='WZ7ZJ'></bdo><ul id='WZ7ZJ'></ul>
                  1. <tfoot id='WZ7ZJ'></tfoot><legend id='WZ7ZJ'><style id='WZ7ZJ'><dir id='WZ7ZJ'><q id='WZ7ZJ'></q></dir></style></legend>