PHP Syntax
Advertisements
Basic Syntax of PHP
You can run php code on any web browser. PHP script is executed on the server, and the plain HTML result is sent back to the browser.
Basic Syntax of PHP
- PHP code is start with <?php and ends with ?>
- Every PHP statements end with a semicolon (;).
- PHP code save with .php extension.
- PHP contain some HTML tag and PHP code.
- You can place PHP code any where in your document.
PHP Syntax
<?php // PHP code goes here ?>
PHP files save with .php extension and it contain some HTML and PHP code.
PHP Syntax
<!DOCTYPE html> <html> <body> <h1>This is my first PHP code</h1> <?php echo "Hello World!"; ?> </body> </html>
Output
This is my first PHP code
Google Advertisment