Skip to content

Instantly share code, notes, and snippets.

@Cynnah
Created September 5, 2019 05:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Cynnah/cc4188e5e0559b9e320e30733f022fa6 to your computer and use it in GitHub Desktop.
Save Cynnah/cc4188e5e0559b9e320e30733f022fa6 to your computer and use it in GitHub Desktop.
Les variables en PHP
<?php
$filmTitle = "Indiana Jones and the Last Crusade";
$haveYouSeen = true;
$filmPublication = 1989;
$note = 8.2;
echo $filmTitle;
echo $haveYouSeen;
echo $filmPublication;
echo $note;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment