Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. <input type="text" class="senha">
  2. <table class="table table-striped">
  3. <thead>
  4.  
  5. <tr>
  6. <th>#</th>
  7. <th>Mês/Ano</th>
  8. <th>Senha</th>
  9. <th>Máquina</th>
  10. <th>Validade</th>
  11. </tr>
  12.  
  13. </thead>
  14. <tbody>
  15. <?php
  16. $i = 0;
  17.  
  18. while ($linha = $consulta->fetch(PDO::FETCH_ASSOC)) {
  19. $i += 1;
  20. ?>
  21. <tr>
  22. <td><?php echo $i; ?></td>
  23. <td><?php echo mes_extenso($linha['mes']) .'/' .$linha['ano']; ?></td>
  24. <td><?php echo $linha['senha_mensal']; ?></td>
  25. <td><?php echo $linha['nome_maquina']; ?></td>
  26. <td><?php echo date('d/m/Y', strtotime($linha['validade'])); ?></td>
  27. <td class="text-center"><a class='btn btn-info btn-xs'><span class="glyphicon glyphicon-edit"></span> Copiar
  28. <?php $linha['senha_mensal']; ?> </a></td>
  29. <?php } ?>
  30. </tr>
  31. </tbody>
  32. </table>
  33. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement