Advertisement
Guest User

Untitled

a guest
Jan 19th, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <?php include_once "../Config/database.php"; ?>
  2. <?php include_once "../Model/User.php"; ?>
  3.  
  4.  
  5. <!DOCTYPE html>
  6. <html lang="en">
  7.  
  8. <?php include_once "header.php"; ?>
  9.  
  10. <body>
  11. <div class="container">
  12.  
  13. <div class="panel panel-danger">
  14. <div class="panel-heading">
  15. <?php
  16. if(isset($_GET['msg'])){
  17. echo $_GET['msg'];
  18. }
  19. ?>
  20. </div>
  21. </div>
  22.  
  23. <div class="table-responsive">
  24. <table class="table">
  25. <thead>
  26. <tr>
  27. <th>#</th>
  28. <th>email</th>
  29. <th>password</th>
  30. </tr>
  31. </thead>
  32. <tbody>
  33. <?php getUsers(); ?>
  34. </tbody>
  35. </table>
  36. </div>
  37.  
  38. <?php include_once "footer.php"; ?>
  39.  
  40. </div>
  41. </body>
  42. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement