php webpage comments code example
Example 1: php comment
// I'm a single, line comment
# I am another single line comments using #
/*
And I am a
multiline comment
*/
Example 2: block comment php
/* This is a multi line comment
yet another line of comment */