Now we will continue to Complete this PHP tutorial
Using Comments
Comment is a part of your PHP code that will not be translated by the PHP engine. You can use it to write documentation of your PHP script describing what the code should do. A comment can span only for one line or span multiple line.
PHP support three kinds of comment tags :
1. //This is a one line comment
2. #This is a Unix shell-style comment. It's also a one line comment
3. /* ..... */Use this multi line comment if you need to.
Have a nice day
0 comments:
Post a Comment