Image may be NSFW.
Clik here to view.
PHP supports both single-line comment and multi-line comment blocks. For a single line comment use // or # and all text to the right of this symbol will be ignored by PHP interpreter.
Single line comment in PHP
<?php // This is a single line comment # This is another way for single line comment ?>
Multi-line comments in PHP
<?php /* and this is a multi-line comment */ ?>