how to put comment in * in php code example
Example 1: comment in php
<?php
/*
echo 'This is a test'; /* This comment will cause a problem */
*/
?>
Example 2: php comment
// I'm a single, line comment
# I am another single line comments using #
/*
And I am a
multiline comment
*/