PHP Tutorial : Comments in php code

Commenting php code can be done in 3 ways. There are 3 different signs of commenting code in php.
First option is with sharp sign “#”. Like here:

#this is a comment
?>

The second option is with a double backslash “//”

//this is another a comment
?>

Last option is the use of a backslash and this sign * like “/*”…………….

Read PHP Tutorial : Comments in php code »