PHP Tutorial : Comments in php code
Jan 14, 2009 Basic PHP
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 »
Tags: code commenting, comments, php code comments, php commenting, php comments

