Question: Which are correct for opening php syntax?
A
B
C
D
(Delimiter style)
<?php
echo "
some dynamic output here
"; ?>B
(Short tags style)
<?
echo "
some dynamic output here
"; ?>C
(ASp style)
<%
print "
some dynamic output here
"; %>D
(Script style)
<script language="php">
print "This another php example";
</script>
Note: Not available