Advertisement
Guest User

Untitled

a guest
Feb 19th, 2018
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. <?php
  2. $todo = [
  3. [
  4. "description" => "Design Wallpaper",
  5. "category" => "School",
  6. "hours" => 2
  7. ],
  8.  
  9. [
  10. "description" => "Post on Portfolio website",
  11. "category" => "Work",
  12. "hours" => 0
  13. ],
  14. [
  15. "description" => "Make PHP homework",
  16. "category" => "School",
  17. "hours" => 3
  18. ],
  19. [
  20. "description" => "Redesign Portfolio website",
  21. "category" => "Work",
  22. "hours" => 6
  23. ],
  24. [
  25. "description" => "Share on Twitter",
  26. "category" => "Home",
  27. "hours" => 1
  28. ]
  29. ];
  30.  
  31. ?>
  32.  
  33. <!doctype html>
  34. <html lang="en">
  35.  
  36. <head>
  37. <meta charset="utf-8">
  38. <title>OPdracht 3</title>
  39. <link rel="stylesheet" type="text/css" href="css/opdracht3.css">
  40. </head>
  41.  
  42. <body>
  43.  
  44.  
  45. <?php foreach($todo as $list): ?>
  46. <?php
  47.  
  48. if ($list['hours'] > 5) {
  49. echo "<section style='background:red'>";
  50. }
  51. else if ($list['hours'] <= 1 ) {
  52. echo "<section style='background:green'>";
  53. }
  54. else {
  55. echo "<section style='background:orange'>";
  56. }
  57.  
  58. ?>
  59. <section class="container">
  60.  
  61. <p><?php echo $list['description'] . '<br>' ?></p>
  62. <p><?php echo $list['category'] . '<br>' ?></p>
  63. <p><?php echo $list['hours'] . '<br>' ?></p>
  64. </section>
  65.  
  66.  
  67.  
  68.  
  69. <?php endforeach; ?>
  70.  
  71. </body>
  72.  
  73. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement