Skip to content

Instantly share code, notes, and snippets.

@sele-nap
Last active March 24, 2022 20:25
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 sele-nap/c2de7cb9c956f67a72b8b635e4d7e3eb to your computer and use it in GitHub Desktop.
Save sele-nap/c2de7cb9c956f67a72b8b635e4d7e3eb to your computer and use it in GitHub Desktop.
WCS quest // 2. Les variables en PHP
<?php
$nameMovie = "Indiana Jones et la dernière croisade";
echo $nameMovie;
$seenMovie = false;
echo $seenMovie;
$dateMovie = 1989;
echo $dateMovie;
$noteMovie = 8.3;
echo $noteMovie;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment