How many types of Tags are available in php?
Posted by
om 10 January, 2009
Standard Tags <?php
… code
?>
Short Tags <?
… code
?>
<?= $variable ?>
Script Tags <script language=“php”>
… code
</script>
ASP Tags <%
… code
%>
Short tags, script tags and ASP tags are all considered deprecated and their use is strongly discouraged.
Categories :
PHP Interview

Comments
No comments yet.