Advertisement
juliusDum

Untitled

Mar 18th, 2020
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1. <?php
  2. $movie = [
  3.     'Indiana Jones and the Kingdom of the Crystal Skull' => ['Harrison Ford', 'Cate Blanchett', 'Karen Allen'],
  4.     'Indiana Jones and the Last Crusade' => ['Harrison Ford', 'Sean Connery', 'Denholm Elliott'],
  5.     'Indiana Jones and the Temple of Doom' => ['Harrison Ford', 'Kate Capshaw', 'Amrish Puri'],
  6. ];
  7. foreach ($movie as $movieTitle => $nameOfTheActor) {
  8.     echo "title of the movie $movieTitle: \n";
  9.     foreach ($nameOfTheActor as $movie) {
  10.         echo "- $movie\n";
  11.     }
  12.     echo "\n";
  13. }
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement