Sponsered Links
Categories
Sponsered Links

Php Comment

 

Single Line Comment

Single line comment is started with two forward slashes (//) or a single hash sign(#) .

// Comment
or
# Comment

Multiline Comment

Multiline Comment being with forward slash followed by an asterisk sign(/*) and end with asterisk followed by forward slash (*/) .
/*
This is a multi line commnet sample.
Between that you can comment multiple block of code
*/

<?php// Opening tag - Single Line comment
#is also single line comment
/*
This is multi line comment. with opening and closing of comment.
Block of comment code between that tags.
*/
print "Hello World!";
// Closing tag - Single Line comment ?>

 
 
Sponsered Links
Latest Updates
 
All Content of this site is for learning only. We do not warrant the correctness of its content. The risk from using it lies entirely with the user. While using this site, you agree to have read and accepted our terms of use and privacy policy.
Copyright © 2009 JSPSERVLETTUTORIAL.INFO All Right Reserved