Advertisement
juliusDum

Untitled

Mar 17th, 2020
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. <?php
  2. $film = "Indiana Jones and the Last Crusade";
  3. if ($film == "Indiana Jones and the Last Crusade") {
  4.     echo "le titre du fil est Indiana Jones and the Last Crusade, ";
  5. }
  6. $not_view = true;
  7. if ($not_view == "true") {
  8.     echo "je n'ai pas vue le film, ";
  9. }
  10. $date_de_sortie = 1989;
  11. if ($date_de_sortie == 1989) {
  12.     echo "il est sortie en 1989, ";
  13. }
  14. $note_du_film = 8.2;
  15. if ($note_du_film == 8.2) {
  16.     echo "il est noté 8.2 sur le site IMDB.";
  17. }
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement