- Opening and closing PHP tags
PHP code is marked with specific tags. <?php opens up a PHP statement. This tells to web server that all statements that follow until the symbol combination ?> are PHP statements.
<?php - opening PHP tag
?> - closing PHP tag
Each statement in PHP must end with a semicolon: ;.