Witam.

chciałbym aby tak wyświetlała się tak tabela, kod :
  1. <table class="table table-bordered table-stripped" style="background:white;">
  2.  
  3. <tbody>
  4.  
  5. <tr>
  6. <td style="width: 20%; heigh: 50px;">
  7. <?php if($status == 1){ ?>
  8. <span class="badge badge-success"><i class="icon-ok icon-white"></i></span>&nbsp;
  9. <?php } else { ?>
  10. <span class="badge badge-important"><i class="icon-remove icon-white"></i></span>&nbsp;
  11. <?php } ?>
  12. <?php echo $server_data['ip'] . ":" . $server_data['port']; ?>
  13.  
  14.  
  15. </td>
  16.  
  17. <td style="width: 20%; heigh: 50px;"> <?php echo $server_data['name']; ?><br /></td>
  18. <td style="width: 20%; heigh: 50px;"><a href="">WWW</a></td>
  19. <td style="width: 20%; heigh: 50px;"><?php if(!empty($info['Players'])) {echo $info['Players'] . "/" . $info['MaxPlayers'];} else { echo "Offline"; } ?><br /></td>
  20. <td style="width: 20%; heigh: 50px;"><?php echo $last_updateM; ?> minutes ago<br /></td>
  21. <td style="width: 20%; heigh: 50px;"> <?php echo $server_data['votes']; ?></td>
  22.  
  23. <td style="width: 20%; heigh: 50px;"><a href="server.php?id=<?php echo $server_data['id']; ?>"><img src="includes/img/icon_details.gif" title="Server Informations" alt="details" /></a></td>
  24. </tr>
  25. </tbody>
  26. </table>