Powered By Blogger

Friday, 7 January 2011

Embedding Php in html:

Php provides the flexibility to use different style of opening and closing tags....... anything in between these tags gets interpreted by the interpreter at the server end……
1.     XML STYLE:
<?php   ………………….    >
2.     SHORT STYLE :
                             <? ………………. >

3.     SCRIPT STYLE
                            <script language=’php’>………………..</script>

4.     ASP STYLE
<% ……………………………………….%>
Here “asp_tags” settings should be enabled.

No comments:

Post a Comment