Advertisement
Guest User

Untitled

a guest
Aug 24th, 2016
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. <div class="col-lg-6">
  2. <div class="panel panel-filled">
  3. <div class="panel-body">
  4. <table class="table">
  5.  
  6. <thead>
  7. <tr>
  8. <th>Plan</th>
  9. <th>Price</th>
  10. <th>Boot Length</th>
  11. <th>Concurrents</th>
  12. <th>Tools</th>
  13. <th>BTC</th>
  14. <th>Paypal</th>
  15. </tr>
  16. </thead>
  17.  
  18. <?php
  19. $newssql = $odb -> query("SELECT * FROM `plans` ORDER BY `price` ASC");
  20. while($row = $newssql ->fetch()) {
  21.  
  22. ?>
  23.  
  24. <tbody>
  25. <tr>
  26. <td><?php echo $row['name'] ?></td>
  27. <td>$<?php echo $row['price'] ?></td>
  28. <td><?php echo $row['mbt'] ?> <?php echo($row['mbt'] / 60 / 60) ?></td>
  29. <td><?php echo $row['conc'] ?> Concurrent(s)</td>
  30. <td><?php echo $row['length'] ?> Month(s)</td>
  31. <td><a href="order.php?id=<?php echo $row['ID']; ?>&method=paypal" class="btn btn-accent btn-rounded btn-xs"><i class="fa fa-bitcoin"></i></a></td>
  32. <td><a href="order.php?id=<?php echo $row['ID']; ?>&method=paypal" class="btn btn-info btn-rounded btn-xs"><i class="fa fa-paypal"></i></a></td>
  33. </tr>
  34. <?php
  35. }
  36. ?>
  37. </tbody>
  38. </table>
  39. </div>
  40. </div>
  41. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement