Multiple choice php Which of the following tags is not a valid way to begin and end a PHP code block? <% %> <?php ?> <?= ?> <! !> Reveal answer Fill a bubble to check yourself D Correct answer Explanation Standard PHP tags are , = ... ?> (short echo), and <% ... %> (ASP tags, if enabled in configuration). '' is not recognized as a PHP code block delimiter.