Php - How to comment multiple lines in php, How to block a code
How to comment multiple lines in php
You can comment single and multiple lines in php in different formats.
<?php
echo "Good Morning";
// This is to comment a single line
# This is a comment a single line
/*
This is to
comment or block
multiple lines
*/
?>
The topic on Php - How to comment multiple lines in php is posted by - Math
Hope you have enjoyed, Php - How to comment multiple lines in phpThanks for your time