Created
July 11, 2017 10:07
-
-
Save sebgates/a886ab7ebf58baa1d115f53bd11f015b 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 | |
$first_name = "Victor"; | |
$year_of_birth = 1974; | |
echo $first_name; | |
echo "<br>"; | |
echo $year_of_birth; | |
echo "<br>"; | |
echo $first_name . " " . $year_of_birth; | |
echo "<br>"; | |
echo "My name is" . " " . $first_name . " " . "and I was born in" . " " . $year_of_birth; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment