Advertisement
Guest User

Untitled

a guest
Dec 6th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="NL">
  3. <h3>php lab 1.07</h3>
  4.  
  5. <?php
  6.  
  7.  
  8. $boeken = array (
  9. array("titel"=> "Stoner", "auteur" => "John Williams",
  10. "genre" => "Fictie", "prijs" => 19.99 ),
  11. array("titel"=> "De circel", "auteur" => "Dave Eggers",
  12. "genre" => "Fictie", "prijs" => 22.50 ),
  13. array("titel"=> "Rayuela", "auteur" => "Cortazar",
  14. "genre" => "Fictie", "prijs" => 25.50 )
  15. );
  16.  
  17.  
  18.  
  19.  
  20. function printarray($arr){
  21.  
  22. foreach($arr as $idx => $arrayn)
  23. if($idx == "prijs") {
  24. echo "$idx: $arrayn \n<br />";
  25.  
  26. };
  27. };
  28.  
  29. array_walk($boeken, "printarray");
  30.  
  31. ?>
  32.  
  33.  
  34.  
  35. <html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement