0 votes
in PHP by
What is the correct and the most two common way to start and finish a PHP block of code?

1 Answer

0 votes
by
The two most common ways to start and finish a PHP script are:

 <?php [   ---  PHP code---- ] ?> and <? [---  PHP code  ---] ?>
...