Sunday, March 16, 2008

PHP Comment

In PHP, // is use to make a single-line comment or /* and */ to make a large comment block.

Examples:

<html>
<body>

<?php

//Single comment use //

/*
Block
comment
*/

?>

</body>
</html>

No comments: