comment word in php
Php Mainly used two types of comment tag
(1) Single line Comment.
(2) Multi line Comment.
Single line Comment
Example of Single line Comment
<?php
//test
?>
Example of Multi line Comment
<?php
/*
line1
line2
line3
*/
?>