PHP Programming

Hands On No. 3 : Working with Comments in PHP

Working with Comments in PHP

                               

<!DOCTYPE html>
<html>
<body>
<h1>PHP page</h1>

<?php
// This is a single-line comment

# This is also a single-line comment
?>

</body>
</html>

Working with Block Comments in PHP

                               

<!DOCTYPE html>
<html>
<body>
<h1>PHP page</h1>

<?php
/*
This is a block comment
This is a block comment
This is a block comment
*/
?>

</body>
</html>