In PHP,we use // to make a single-line comment or /* and */ to make a large comment block. <html> <body> <?php //this is a comment /* this is a comment block */ ?> </body> </html> It's from http://trainingphp.blogspot.com