Last active
March 11, 2019 10:39
-
-
Save ConnorFM/62385647af97dad0ba2b1312305bdb8d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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