Escaping the PHP
Under "normal" circumstances, you'll mix PHP and HTML within a document. The PHP has to be separated from the HTML. Computer nerds like calling this "escaping". Escaping is done in any one of 4 ways:
a) The shortest method of escaping
<? "Put your php code here"; ?>
b) The standard method of escaping (also the default):
<?php "put your PHP code here"; ?>
c) Escaping like in JavaScript :
<script language = "php">
"in this case the script code comes here like in javascript";
</script>
d) Escaping like in ASP :
<% "code comes here like in ASP"; %>
a) and d) above have to be especially configured in order for them to be acceptable by your PHP pre-processor. In this tutorials we will make use of a) and b) - especially b).
Ok. Hello World...
PHP ecommerce web developer India flash website designer India seo
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81