Q. Which of the following is a correct PHP syntax? (A) <php> echo 'Hello'; </php> (B) <?php echo 'Hello'; ?> (C) <script> echo 'Hello'; </script> (D) <? echo 'Hello'; ?> ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (B) <?php echo 'Hello'; ?> Explanation: Standard PHP code starts with <?php and ends with ?>.