(PCC)::[how-to-use-comments-to-leave-out-parts-of-the-code-in-php-language]::[php]
<!DOCTYPE html> <html> <body> <?php // You can also use comments to leave out parts of a code line $x = 5 /* + 15 */ + 5; echo $x; ?> </body> </html>