Advertisement
Guest User

Untitled

a guest
Oct 13th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <?php
  2. $tableofMovie = [
  3. "Indiana Jones and the Kingdom of the Crystal Skul" => [
  4. "Harrison Ford",
  5. "Cate Blanchette",
  6. "Karen Allen". '<br>'],
  7.  
  8. "Indiana Jones and the Last Crusade" => [
  9. "Harrison Ford",
  10. "Sean Connery",
  11. "Denholm Elliott". '<br>'],
  12.  
  13. "Indiana Jones and the Temple of Doom"=> [
  14. "Harrison Ford",
  15. "Kate Capshaw",
  16. "Jonathan Ke Quan"],
  17. ];
  18.  
  19.  
  20.  
  21. foreach($tableofMovie as $nomsMovies=>$actors)
  22. echo 'Dans le film'. ' ' .$nomsMovies. ' ' .'les principaux acteurs sont :'. implode(", ", $actors);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement