Adding Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Learning Php</title>
</head>
<body>
<div class="container">
This is my first php website
<?php
echo "Hello this is php";
// Single line comment
/*
This
is
a
multi
line
comment
*/
?>
</div>
</body>
</html>
Comments
Post a Comment