嗨,您好。谁能告诉我如何安排从数据库中检索到的菜品标签复选框的列表,并且在显示时不是按并排顺序排列的,我希望它以3 x 3的形式显示格式。这是该代码:

<div id="frmform">
    <form name="frmrestaurant" id="frmrestaurant" method="post" onsubmit="" enctype="multipart/form-data">
  <p class="msgsignup">Add Restaurant</p>
  <div id="iderror"></div>
  <div class="topinputs">
   <div> <label for="restaurant_name" class="name">Restaurant Name :</label><input type="text" name="restaurant_name" size="32" id="restaurant_name" value="<?php echo $row->restaurant_name; ?>" class="validate[required,custom[onlyLetter],length[0,100]] text-input" />  </div>


   </div>
   <div> <label for="website" class="name">Website :</label><input  size="32" type="text" name="website" id="website" value="<?php echo $row->website; ?>" class="validate[required,length[0,100]] text-input" />  </div>
   <div> <label for="budget" class="name">Budget :</label>
   <?php echo $this->lists['budget'];?>
   </div>
   <div> <label for="idcuisine" class="cuisine"  >Cuisine:</label>
   <?php echo $this->lists['cuisine']  ;?>

   <div> <label for="idcategory" class="category">Category:</label>
   <?php echo $this->lists['category'];?>
   </div>


美食和类别列表显示不正确。

谢谢。

最佳答案

可以用php正确的逻辑来完成

    <tr>
        <?php
             while($ofetch=$db->fetchNextObject($query))
              {
              $j++;
        ?>
                 <td width="33%">
                  <input type="checkbox" name="service[]" id="service" value="<?php echo $ofetch->service_id?>" /> some text
                 </td>
                 <?php if($j%3==0) { echo "</tr><tr>";}
                   }
                   ?>
   </tr>

关于php - 如何在表格的布局上以3/3格式排列复选框,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2840297/

10-09 13:05