Advertisement
shakil97bd

Usage of All Comment Tag

Dec 20th, 2014
450
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.53 KB | None | 0 0
  1. -------------------------Usage of All Comment Tag --------------------------
  2.  
  3. HTML Comment Tag
  4. ------------------------
  5.     <!-- ... -->        =   <!-- This Is HTML Comment Tag -->
  6.  
  7. CSS Comment Tag
  8. ------------------------
  9.     /* ... */       =   /* This Is CSS Comment Tag.This Is a Multi-Line Comment Tag */
  10.  
  11. PHP Comment Tag
  12. ------------------------
  13.     Single Line Comment
  14.     ----------------------
  15.         //      =   // This Is Single Line Comment In PHP
  16.    
  17.     Multi-Line Comment
  18.     ----------------------
  19.         /* ... */   =   /* This Is a Multi-Line Comment In PHP */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement