Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. <table class="table table-striped table-hover table-sm">
  2. <tr class="bg-dark text-light">
  3. <th class="hidden-xs">Nome</th>
  4. <th>Email</th>
  5. <th class="text-center" style="width: 1em;">Marcar</th>
  6. <th class="text-center" style="width: 1em;">Ação</th>
  7. </tr>
  8. <?php
  9. $count = 0;
  10. foreach($result as $row) {
  11. $count = $count + 1;
  12. echo '
  13. <tr>
  14. <td class="hidden-xs">'.$row["customer_name"].'</td>
  15. <td>'.$row["customer_email"].'</td>
  16. <td class="text-center">
  17. <label class="label--checkbox">
  18. <input type="checkbox" name="single_select" class="single_select checkbox" data-email="'.$row["customer_email"].'" data-name="'.$row["customer_name"].'" />
  19. </label>
  20. </td>
  21. <td>
  22. <button type="button" name="email_button" class="btn btn-gray rounded btn-xs email_button btn-row-acao-enviar" id="'.$count.'" data-email="'.$row["customer_email"].'" data-name="'.$row["customer_name"].'" data-action="single">Enviar</button>
  23. </td>
  24. </tr>
  25. ';
  26. }
  27. ?>
  28. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement