<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>

      统计数据库中的注册用户

      Count registered users in database(统计数据库中的注册用户)
          <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);
                

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

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Proxy Authentication Required with cURL(cURL 需要代理身份验证)
                How to use a SOCKS 5 proxy with cURL?(如何使用带有 cURL 的 SOCKS 5 代理?)
                How to use HTTP_X_FORWARDED_FOR properly?(如何正确使用 HTTP_X_FORWARDED_FOR?)
                file_get_contents behind a proxy?(代理后面的 file_get_contents ?)
                pecl install cassandra throws: quot;error: Unable to load libcassandraquot;(pecl install cassandra 抛出:“错误:无法加载 libcassandra)
                Installing php datastax driver on ubuntu(在 ubuntu 上安装 php datastax 驱动)
                  <tbody id='WZ7ZJ'></tbody>

                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>
                      • <tfoot id='WZ7ZJ'></tfoot><legend id='WZ7ZJ'><style id='WZ7ZJ'><dir id='WZ7ZJ'><q id='WZ7ZJ'></q></dir></style></legend>