Question:Which is correct way to embedding PHP tag into webpage delimiter syntax?
A
Welcome !
<?php echo "some dynamic output here
"; ?> Some static output hereB
Welcome !
<? echo "some dynamic output here
"; ?>Some static output here
C
Welcome !
<% echo "some dynamic output here
"; %>Some static output here
D
<?phpWelcome !
echo "some dynamic output here
";Some static output here
?>
+ AnswerA B C
+ Report