<html>
<body>
<?php
echo " oheon.com";
?>
</body>
</html>
To make a single-line comment, use //. To make a large comment block, use /* and */. See the example below:
<html>
<body>
<?php
//This is a comment
/*
This is
a comment
block
*/
?>
</body>
</html>