PHP Syntax | | | |
Written by Administrator | ||
Monday, 28 November 2011 13:13 | ||
Basic PHP SyntaxA PHP scripting block always starts with <?php and ends with ?>. A PHP scripting block can be placed anywhere in the document.On servers with shorthand support enabled you can start a scripting block with <? and end with ?>. For maximum compatibility, we recommend that you use the standard form (<?php) rather than the shorthand form.
Below, we have an example of a simple PHP script which sends the text "Hello World" to the browser:
There are two basic statements to output text with PHP: echo and print. In the example above we have used the echo statement to output the text "Hello World". Note: The file must have a .php extension. If the file has a .html extension, the PHP code will not be executed. Comments in PHPIn PHP, we use // to make a single-line comment or /* and */ to make a large comment block.<html> <body> <?php //This is a comment /* This is a comment block */ ?> </body> </html> |