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