Created
January 20, 2017 14:31
-
-
Save kirillrocks/4ebe056f08a2fd376d4acd417a9c4d1d to your computer and use it in GitHub Desktop.
This file contains 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
<!DOCTYPE html> | |
<html> | |
<body> | |
<?php | |
// This is a single-line comment | |
# This is also a single-line comment | |
/* | |
This is a multiple-lines comment block | |
that spans over multiple | |
lines | |
*/ | |
// You can also use comments to leave out parts of a code line | |
$x = 5 /* + 15 */ + 5; | |
echo $x; | |
?> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment