Skip to content

Instantly share code, notes, and snippets.

@kirillrocks
Created January 20, 2017 14:33
Show Gist options
  • Save kirillrocks/10d0fbe09722c2c3f846d4dec69b1ac1 to your computer and use it in GitHub Desktop.
Save kirillrocks/10d0fbe09722c2c3f846d4dec69b1ac1 to your computer and use it in GitHub Desktop.
<!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