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

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

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

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

    1. <tfoot id='jzrvx'></tfoot>

        Mysql 取数组、表结果

        时间:2023-09-20

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

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

            <tfoot id='Czx3M'></tfoot>
              • <bdo id='Czx3M'></bdo><ul id='Czx3M'></ul>

                    <tbody id='Czx3M'></tbody>
                • <i id='Czx3M'><tr id='Czx3M'><dt id='Czx3M'><q id='Czx3M'><span id='Czx3M'><b id='Czx3M'><form id='Czx3M'><ins id='Czx3M'></ins><ul id='Czx3M'></ul><sub id='Czx3M'></sub></form><legend id='Czx3M'></legend><bdo id='Czx3M'><pre id='Czx3M'><center id='Czx3M'></center></pre></bdo></b><th id='Czx3M'></th></span></q></dt></tr></i><div id='Czx3M'><tfoot id='Czx3M'></tfoot><dl id='Czx3M'><fieldset id='Czx3M'></fieldset></dl></div>
                • 本文介绍了Mysql 取数组、表结果的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我对此很陌生,不知道该怎么做,

                  i'm pretty new to this and not sure how should i do it,

                  我有一个数据库,其中有一列名为names"

                  I've got a database with a column called "names"

                  我怎样才能让它显示出来?

                  how can i make it display in so?

                    <tr>
                    <td width="270px">Henry</td>
                    <td width="270px">Jeffrey</td>
                    <td width="270px">Hansel</td>
                    </tr>
                  
                    <tr>
                    <td width="270px">Michelle</td>
                    <td width="270px">Jackson</td>
                    <td width="270px">Ivan</td>
                    </tr>
                  

                  我只知道如果记录在垂直方向上一个接一个地排列,我应该怎么做.

                  I only know how i should do it if the records goes one after another vertically.

                    $result = mysql_query('SELECT * FROM member');
                  
                    while($row = mysql_fetch_array($result))
                    {
                    echo'
                    <tr>
                    <td width="270px">'.$row['names'].'</td>
                    <td width="270px">Jeffrey</td>
                    <td width="270px">Hansel</td>
                    </tr>';
                  

                  有点卡在这里...

                  对不起,我忘了放这个.

                  Sorry i forgot to put this.

                  我想要的是它应该循环标签.所以我可以有一个包含无限行的 3 列表.

                  what i want is that it should loop the tags along. So i can have a 3 column table with infinite rows.

                  这个呢?如果我想让它循环怎么办?

                  what bout this one? What if i want this to loop instead?

                  <tr>
                  <td><img src="images/ava/A.png" /></td>
                  <td>A</td>
                  <td width="2px" rowspan="3"></td>
                  <td><img src="images/ava/B.png" /></td>
                  <td>B</td>
                  </tr>
                  
                  
                  <tr>
                  <td>A</td>
                  <td>B</td>
                  </tr>
                  

                  推荐答案

                  $row 将在循环的每次迭代中更新:

                  $row will update on each iteration of the loop:

                  $result = mysql_query('SELECT * FROM member');
                  
                  echo '<tr>';
                  
                  for($i = 0; $row = mysql_fetch_array($result); $i = ($i+1)%3){
                      echo '<td width="270px">'.$row['names'].'</td>';
                      if($i == 2)
                          echo '</tr><tr>';
                  }
                  
                  echo '</tr>';
                  

                  这篇关于Mysql 取数组、表结果的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:PHP:以五个为一组显示数据库中的条目? 下一篇:第二个while循环没有运行.为什么?

                  相关文章

                  最新文章

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

                    <bdo id='4qUpV'></bdo><ul id='4qUpV'></ul>

                      <legend id='4qUpV'><style id='4qUpV'><dir id='4qUpV'><q id='4qUpV'></q></dir></style></legend>