
click to enlarge
PHP comments are like HTML comments. PHP comments are indicated by certain characters, when the
PHP code is parsed the text between the commenting characters will not be executed.
You should always comment your code! It is a way of documenting your code that will allow you to understand what your code does! Do you think you will remember what all your code does a few months from now?
To distinguish comments from code use either, // at the start of each line, or enclose the section of test you want as a comment with /* and */
For example:
// This is a comment. Below,
// is another comment.
echo 'I will be output in the browser';
/* I am a comment that
is spread across lines */
?>