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

  • <tfoot id='EqsFT'></tfoot>

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

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

      1. 在 MySQL 服务器上使用 PHP 进行循环

        时间:2023-09-20
        1. <tfoot id='6iI3d'></tfoot>
        2. <small id='6iI3d'></small><noframes id='6iI3d'>

            <tbody id='6iI3d'></tbody>
        3. <legend id='6iI3d'><style id='6iI3d'><dir id='6iI3d'><q id='6iI3d'></q></dir></style></legend>
            <bdo id='6iI3d'></bdo><ul id='6iI3d'></ul>

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

                  本文介绍了在 MySQL 服务器上使用 PHP 进行循环的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我有一个数据库 (SQL),其中包含Staff"表,其中有两条记录.我需要使用 PHP 在网页上显示这些记录的内容.

                  I have a database (SQL) with the table "Staff" with two records in it. I am required to display the contents of these records on a web page using PHP.

                  <html>
                  <head>
                  <title>CES Staff details</title>
                  </head>
                  
                  <body>
                  
                  **code emitted**
                  
                  <?php
                  $row = mysql_fetch_array($result) ; 
                  $looping = 1;
                  $i = $row.length;
                  while ($looping <= $i)  
                      {
                          echo $row["Name"].", Room ".$row["Room"].", Tel ".$row["Telephone"] ;
                          $looping++;
                      }
                  ?>
                  </body>
                  </html>
                  

                  我将如何正确更改 while 循环,以便在页面上显示两条记录.

                  How would I change the while loop correctly so that it will display both records on the page.

                  谢谢!

                  推荐答案

                  mysql_fetch_array() 仅从数据库中检索一行.您需要在 while 循环中调用它来检索所有行.$looping 增量在这里是不必要的,因为 mysql_fetch_array() 在没有更多行可用时返回 false.

                  mysql_fetch_array() only retrieves a single row from the database. You need to call it inside your while loop to retrieve all rows. The $looping increment is unnecessary here, since mysql_fetch_array() returns false when no more rows are available.

                  while ($row = mysql_fetch_array($result))  
                  {
                      echo $row["Name"].", Room ".$row["Room"].", Tel ".$row["Telephone"] ;
                  }
                  

                  这篇关于在 MySQL 服务器上使用 PHP 进行循环的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:虽然循环 PHP get_result 不起作用 下一篇:如何在 while 循环中填充数组并在每次迭代中获得

                  相关文章

                  最新文章

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

                  <tfoot id='pAyXL'></tfoot>

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

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