Advertisement
hercioneto

Listar Clientes

May 20th, 2019
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.92 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5.     <title>Cadastro Clientes</title>
  6. </head>
  7. <body>
  8. <?php
  9. include "Clientes.php";
  10. $cliente = new Clientes();
  11. $dados = $cliente->listar();
  12. ?>
  13. <table>
  14.     <tr>
  15.         <td>Id</td>
  16.         <td>Nome</td>
  17.         <td>Data Nascimento</td>
  18.         <td>Opções</td>
  19.     </tr>
  20. <?php
  21. while ($row = $dados->fetch_assoc()) {
  22.         //printf ("%s (%s)\n", $row["idCliente"], $row["nome"]);
  23.         $idCliente = $row["idCliente"];
  24.         $nome = $row["nome"];
  25.         $dataNasc = $row["dataNascimento"];
  26. ?>
  27. <tr>
  28.         <td><?php echo $idCliente; ?></td>
  29.         <td><?php echo $nome; ?></td>
  30.         <td><?php echo $dataNasc; ?></td>
  31.         <td><a href="editarCliente.php?idCliente=<?php echo $idCliente; ?>">Editar</a> - <td><a href="excluirCliente.php?idCliente=<?php echo $idCliente; ?>">Excluir</a></td>
  32.     </tr>
  33. <?php        
  34.     }
  35.  
  36.  
  37. ?>
  38. </table>
  39. </body>
  40. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement