Advertisement
UniQuet0p1

Untitled

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