Basic Syntax of PHP: Getting Started with PHP Programming
☰Fullscreen
Table of Content:
You can run PHP code on any web browser. The 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 contains some HTML tag and PHP code.
- You can place PHP code anywhere in your document.
PHP Syntax
PHP files save with .php extension and it contain some HTML and PHP code.
This is my first PHP code
Output
This is my first PHP code