Identify the comment clause to include along with in php code Select one: // #include 'http://www.example.com/file.htm'; <!-- include 'file.php' --> /* #include 'file.php' */ <? include location='file.txt' ?>
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 */