Created
January 20, 2017 14:33
-
-
Save kirillrocks/10d0fbe09722c2c3f846d4dec69b1ac1 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