Comments:
In PHP code, Comment is a line that is not executed but it helps to other to understand what are you doing in program and why you are using the comment line or it's work as a reminder to know what you did in the program last time.But there is many types of comment line like single line and multi line comments:
Example for Single line comment:
<?php
echo "<p>Hello my Friends</p>";
//This is a single-line comment
echo "<p>You will be a good please read all my blogs</p>";
?>
Here is another exaple of Multiple line comment "
example : <!-- -->
<?php
<!-- echo "<p>Hello my Friends</p>";
echo "<p>Hello my Friends</p>"; -->
echo "<p>Hello my Friends</p>";
echo "<p>Hello my Friends</p>";
?>
Note:- In the above example if you run this program the first output and and second will not be appear in output screen, because we made them as a multiple line comment.
Comments