-->

PHP COMMENTS

 

Single Line Comments

PHP single line comment begins with //, See the example below:

<?php
    echo "Hello World!"; // Output "Hello World!"
?>

Multi-line Comments

PHP multi-line line comment begins with /*, and ends with */.

<?php
    /* The following line of code
       will output the "Hello World!" message */
    echo "Hello World!";
?>

Post a Comment

0 Comments