how to comment out php file code example
Example 1: how to make a comment in php
// single line comment
/* multi line comment
hello
*/
Example 2: how to create comments in php
Answer: Use the Syntax "// text" (single line) and "/* text */"
(multi-line)