Guest User

Untitled

a guest
Jan 19th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.08 KB | None | 0 0
  1. <div class="table-responsive">
  2. <form class="form-inline" action="registrosVazios.php" method="GET">
  3. <table id="tabelaCupons" class="table table-condensed table-bordered table-striped" border="1px" bordercolor="#000000">
  4. <thead>
  5.  
  6. <tr>
  7. <th style="text-align:center;width: 10px">
  8. <input type="checkbox" name="chkAll" onClick="checkAll(this)" />
  9. </th>
  10. <th style="text-align:center;vertical-align:middle;">
  11. DATA
  12. </th>
  13. <th style="text-align:center;vertical-align:middle;">
  14. PDV
  15. </th>
  16. <th style="text-align:center;vertical-align:middle;">
  17. CUPOM
  18. </th>
  19. <th style="text-align:center;vertical-align:middle;">
  20. VALOR
  21. </th>
  22. </tr>
  23. </thead>
  24. <tbody>
  25. <?php
  26. if (mysqli_num_rows($resultImportaEmporium) > 0) {
  27. while($row = mysqli_fetch_assoc($resultImportaPdv)) { ?>
  28. <tr>
  29. <td style='height:5px;text-align:center'>
  30. <input type='checkbox' id='<?php echo $row["ie_cupom"]; ?>' name='<?php echo $row["ie_cupom"]; ?>' value='<?php echo $row["ie_cupom"]; ?>' onClick="verCheck()" >
  31. </td>
  32. <td style="height:5px;text-align:center;">
  33. <?php echo date_format (new DateTime($row["ie_data"]), 'd/m/Y'); ?>
  34. </td>
  35. <td style="height:5px;text-align:center;">
  36. <?php echo $row["ie_pdv"]; ?>
  37. </td>
  38. <td style="height:5px;text-align:center;">
  39. <?php echo $row["ie_cupom"]; ?>
  40. </td>
  41. <td style="height:5px;text-align:center;">
  42. <?php echo round($row["ie_valor"],2); ?>
  43. </td>
  44. </tr>
  45. </div>
  46. </div>
  47. <?php
  48. }
  49. } else {
  50. echo "0 registros";
  51. }
  52. ?>
  53. </tbody>
  54. </table>
  55.  
  56. <td style="height:5px;text-align:center;">
  57. <?php echo round($row["ie_valor"],2); ?>
  58. </td>
Add Comment
Please, Sign In to add comment