Skip to content

Instantly share code, notes, and snippets.

@sebgates
Created July 11, 2017 10:07
Show Gist options
  • Save sebgates/a886ab7ebf58baa1d115f53bd11f015b to your computer and use it in GitHub Desktop.
Save sebgates/a886ab7ebf58baa1d115f53bd11f015b to your computer and use it in GitHub Desktop.
<?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