Comments in PHP

In PHP, we use # ,  // to make a single-line comment or /* and */ to make a large comment block.



<html>
   <body>
      <?php

            // This is a single line comment
           
            # This is also a single line comment

            /* This is a multiple
                        lines comment block */

       ?>
   </body>
</html>

Comments