/ Published in: PHP
PHP scripting block can be placed anywhere in the document. It always starts with
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<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>
URL: http://phpforms.net/tutorial/tutorial.html