Advertisement
UniQuet0p1

author list

Nov 17th, 2021
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. ?php
  2. $lines = file("authors.txt");
  3. $employees = [];
  4. foreach ($lines as $line){
  5. list($id, $firstName, $lastName, $grade) = explode(";", $line);
  6. $employees[] = ["id" => $id, "firstName" => $firstName, "lastName" => $lastName, "grade" => $grade];
  7. }
  8. ?>
  9. <!doctype html>
  10. <html lang="en">
  11. <head>
  12. <meta charset="utf-8">
  13. <link rel="stylesheet" type="text/css" href="styles.css">
  14. <title>Autorid</title>
  15. </head>
  16. <body id="author-list-page">
  17.  
  18. <div id="root">
  19.  
  20. <nav>
  21. <div>
  22. <a href="../index.php" id="book-list-link">Raamatud</a>
  23. <a href="book-add.php" id="book-form-link">Lisa raamat</a>
  24. <a href="author-list.php" id="author-list-link">Autorid</a>
  25. <a href="author-add.php" id="author-form-link">Lisa autor</a>
  26. </div>
  27. </nav>
  28.  
  29. <main>
  30.  
  31. <div id="authors">
  32.  
  33. <div class="title header">Nimi</div>
  34. <div class="author header">Perekonnanimi</div>
  35. <div class="grade header">Hinne</div>
  36.  
  37. <div class="br header-divider"></div>
  38.  
  39.  
  40. <div>
  41. <?php foreach ($employees as $each): ?>
  42.  
  43. <?php print $each["firstName"] . PHP_EOL; ?>
  44.  
  45. <?php endforeach; ?>
  46. </div>
  47.  
  48. <div>
  49. <?php foreach ($employees as $each): ?>
  50.  
  51. <?php print $each["lastName"] . PHP_EOL; ?>
  52.  
  53. <?php endforeach; ?>
  54. </div>
  55.  
  56. <div class="score">
  57. <?php foreach ($employees as $each): ?>
  58.  
  59. <?php print $each["grade"] . PHP_EOL; ?>
  60.  
  61. <?php endforeach; ?>
  62. </div>
  63.  
  64.  
  65. </div>
  66. </main>
  67.  
  68. <footer>
  69. ICD0007 Näidisrakendus
  70. </footer>
  71.  
  72. </div>
  73.  
  74. </body>
  75. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement