How to comment in PHP
There are 3 ways of commenting in PHP:
# This line is commented out (single line comment).
...
// so is this line (another single line comment).
...
/*
Is this line a comment? Make a guess! ( ... Alright, it is a multi-line comment.)
*/
?>
# This line is commented out (single line comment).
...
// so is this line (another single line comment).
...
/*
Is this line a comment? Make a guess! ( ... Alright, it is a multi-line comment.)
*/
?>

<< Home