2017-02-22 66 views
0

我想讓colspan auto。實際上,我創建了一個動態表格,但有時td會變爲空,所以我想擴大列寬,但我對此沒有想法。是否有可能讓汽車公司或其他任何方法來做到這一點?如何在td爲空時使colspan auto?

下面你可以看到我的表:

<table> 
     <tr> 
     <td>General or OBC</td> 
     <td>125</td> 
     </tr> 
     <tr> 
     <td>SC or ST</td> 
     <td>65</td> 
     </tr> 
     <tr> 
     <td>PH Candidates</td> 
     <td>25</td> 
     </tr> 
     <tr> 
     <td>Pay the Exam Fee Through SBI Mops Debit Card, Credit Card, Net Banking or SBI E Challan Mode Only</td> 
     <td></td> 
     </tr> 
    </table> 

這裏是我的PHP代碼也,

<table class="feedetails" id="feedetails"> 
       <tr class="tblhead"> 
       <th class="inricon" colspan="2">APPLICATION FEE</th> 
       </tr> 
       <?php 
        $stmt = $pdo->prepare("SELECT * FROM appfee where joblink=? and status='y' order by id asc"); 
        if ($stmt->execute(array($joblink))) { 
         $rows = $stmt->rowCount(); 
         if ($rows == "") { 
         echo '<style type="text/css">.feedetails{display: none;}</style>'; 
         }else{ 
         while ($row = $stmt->fetch()) { 
          echo'<tr> 
           <td>'.$row['category'].'</td> 
           <td>'.$row['fee'].'</td> 
          </tr>'; 
         } 
         } 
        } 
       ?> 
      </table> 
+1

那麼它看起來像你將不得不在PHP中這樣做,所以告訴我們創建這個HTML的PHP​​代碼 – RiggsFolly

+0

好吧,先生只是等待 –

+0

好的,先生,我已經添加了我的PHP代碼,現在你可以在問題中看到 –

回答

1

while循環改成這樣:

while ($row = $stmt->fetch()) { 
    if($row['fee'] !== '') { // if $row['fee'] is not empty then echo two TDs 
     echo '<tr> 
      <td>'.$row['category'].'</td> 
      <td>'.$row['fee'].'</td> 
     </tr>'; 
    } 
    else { // otherwise, echo one TD with colspan == 2 
     echo '<tr><td colspan="2">'.$row['category'].'</td></tr>'; 
    } 
} 
+0

這節省了我的麻煩 – RiggsFolly

+0

謝謝,親愛的兄弟:) –

+0

它很簡單。 –