Friday 29 August 2008

Comments in PHP

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


<html><body>
<?php
//This is a comment
/*This isa commentblock*/
?>
</body>
</html>

No comments: