Chapter 3: PHP Syntax
PHP scripts are executed on the server, and the plain HTML result is sent to the browser.
1 2 3 |
<?php echo "Hello, World!"; ?> |
PHP scripts are executed on the server, and the plain HTML result is sent to the browser.
1 2 3 |
<?php echo "Hello, World!"; ?> |