The following code shows how to write a single line as well as multiline comments in PHP Programming.
Single Line comment:
< ?php
// a single-line comment
# Another single-line comment
?>
Multiline Comment:
<?php
/*
a multiple-lines
This is another line
a line
*/
?>