Skip to content

Instantly share code, notes, and snippets.

@ConnorFM
Last active March 11, 2019 10:39
Show Gist options
  • Save ConnorFM/62385647af97dad0ba2b1312305bdb8d to your computer and use it in GitHub Desktop.
Save ConnorFM/62385647af97dad0ba2b1312305bdb8d to your computer and use it in GitHub Desktop.
<?php
$movieName = "Indiana Jones and the Last Crusade";
$seen = true;
$releaseDate = 1989;
$rating = 8.2;
echo $movieName."<\br>";
echo $seen."<\br>";
echo $releaseDate."<\br>";
echo $rating;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment