Comments in PHP
Similar to HTML and CSS languages, in PHP you can leave comments. They can be single-line and multi-line.
Here is an example of a single-line comment:
<?php
echo 'hello'; // comment
?>
Here is an example of a multi-line comment:
<?php
/*
comment
comment
*/
echo 'hello';
?>