Multiple choice technology web 2.0

PHP server scripts are surrounded by delimiters, which?

  1. <?php>...</?>

  2. <script>...</script>

  3. <&>...</&>

  4. <?php…?>

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

PHP code is parsed inside standard delimiters, which start with `. Other options like XML/HTML style tags (...?>), ASP-like tags (<&>...&>), or JS script tags (...`) are invalid for default PHP execution.