/ Published in: PHP
URL: http://phpforms.net/tutorial/tutorial.html
PHP scripting block can be placed anywhere in the document. It always starts with <?php>. The example of PHP code below sends the text “Oheon.com” to the browser:
Expand |
Embed | Plain Text
<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>
You need to login to post a comment.
