PHP opening and closing recommended tags?
The three different forms are as follows:
<%
echo ‘this is ASP-style tags; it may not be available';
%>
- <?php
echo “this is the recommended style”;
?> - <script language="php">
echo “this style is also available”;
</script> - <?
echo “this is short tags style; it needs to be configured”;
?>
<%
echo ‘this is ASP-style tags; it may not be available';
%>
PHP opening and closing recommended tags?
Reviewed by MCH
on
March 01, 2014
Rating:
No comments: