Advertisement
juliusDum

Untitled

Mar 19th, 2020
456
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.54 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.  
  11.         echo "$movie\n";
  12.     }
  13.     echo "\n";
  14. }
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement