Problem Statement
Explain the different ways to open and close PHP tags.
Explanation
PHP code usually starts with <?php and ends with ?>. Short tags <? and ?> are also supported if enabled in configuration. The long tag is preferred for portability.
Code Solution
SolutionRead Only
<?php echo 'Hello'; ?>
