Add comments in PHP


SUBMITTED BY: henry1874w

DATE: June 4, 2017, 7:22 p.m.

FORMAT: Text only

SIZE: 323 Bytes

HITS: 328

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. // This is a single-line comment
  6. # This is also a single-line comment
  7. /*
  8. This is a multiple-lines comment block
  9. that spans over multiple
  10. lines
  11. */
  12. // You can also use comments to leave out parts of a code line
  13. $x = 5 /* + 15 */ + 5;
  14. echo $x;
  15. ?>
  16. </body>
  17. </html>

comments powered by Disqus