Advertisement
Guest User

Untitled

a guest
Jan 21st, 2018
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. <style>
  2. .table{
  3. width: 100%;
  4. }
  5. </style>
  6.  
  7. <table class="table" cellpadding="15" >
  8. <thead>
  9. <tr align ="center">
  10. <th scope="col">Identyfikator czytelnika</th>
  11. <th scope="col">Login</th>
  12. <th scope="col">Hasło</th>
  13. <th scope="col">Imię</th>
  14. <th scope="col">Nazwisko</th>
  15. <th scope="col">Telefon</th>
  16. <th scope="col">Adres</th>
  17.  
  18. </tr>
  19. </thead>
  20. <tbody>
  21. <?php foreach ($result as $row): ?>
  22. <tr align="center">
  23. <td><?php echo $row["id_czytelnik"]; ?></td>
  24. <td><?php echo $row["login"]; ?></td>
  25. <td><?php echo $row["haslo"]; ?></td>
  26. <td><?php echo $row["imie"]; ?></td>
  27. <td><?php echo $row["nazwisko"]; ?></td>
  28. <td><?php echo $row["telefon"]; ?></td>
  29. <td><?php echo $row["adres"]; ?></td>
  30. <td><a href="index.php?show=aktualizuj&id_czytelnik=<?php echo $row["id_czytelnik"]; ?>" class="btn btn-primary">Zaktualizuj profil czytelnika</a></td>
  31. </tr>
  32. <?php endforeach; ?>
  33. </tbody>
  34. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement