Below are syntax for commenting in many different programming languages. See the list below...
[code]< !--This text is a comment html doc-- >
// PHP comment one line
/*PHP muliti line comments
more then on line ...*/
# - Script Comments Python etc
REM - batch file comments
Python
# for a single line
'''
comment out a large area of text
'''
[/code]