Comments In PHP
June 19th, 2008 | by King | Posted in » Comment
We can use comments in php language. i.e.
<?php # this is a comment // this is a comment /* this is also a comment */ /* This comment is called multiple line comment and everything in between slash and staric will be ignored */ // but remember u can use these kind of comments in between php tags ?>
