Skip to content

Instantly share code, notes, and snippets.

@kuronana
Created September 11, 2018 13:50
Show Gist options
  • Save kuronana/bbe639738be58e923253499096e7d2f1 to your computer and use it in GitHub Desktop.
Save kuronana/bbe639738be58e923253499096e7d2f1 to your computer and use it in GitHub Desktop.
<?php
$titleOfMovie = "Indiana Jones and the Last Crusade";
$score = 8.3;
$releaseDate = "1989";
$release = true;
echo "$titleOfMovie";
echo "<br/>";
echo "$score";
echo "<br/>";
echo "$releaseDate";
echo "<br/>";
echo "$release";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment