Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, inital-scal=1">
  6. <title>Arrays</title>
  7. </head>
  8. <body>
  9. <!-- <ol>
  10. <li>Dominic Manthei
  11. <ul>
  12. <li>Geschlecht = männlich
  13. <li>Standort = Frankfurt
  14. </ul>
  15.  
  16.  
  17. </ol>
  18. -->
  19. <?php
  20. $teilnehmer = array(
  21. array(
  22. "Anrede" => "Herr",
  23. "Vorname" => "Dominic",
  24. "Nachname" => "Manthei",
  25. "Standort" => "Frankfurt"
  26. ),
  27. array(
  28. "Anrede" => "Herr",
  29. "Vorname" => "Arne",
  30. "Nachname" => "Hildebrand",
  31. "Standort" => "Bremen"
  32. ),
  33. array(
  34. "Anrede" => "Herr",
  35. "Vorname" => "Florian",
  36. "Nachname" => "Buschmann",
  37. "Standort" => "Hannover"
  38. ),
  39. array(
  40. "Anrede" => "Frau",
  41. "Vorname" => "Hoda",
  42. "Nachname" => "Amirianfar",
  43. "Standort" => "Frankfurt"
  44. )
  45. );
  46.  
  47. echo "<pre>";
  48. print_r($teilnehmer);
  49. echo "</pre>";
  50.  
  51. echo $teilnehmer[2]["Standort"];
  52.  
  53. ?>
  54. </body>
  55. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement