Tuesday, 1 May 2012

Php Basics

Php full form - Hypertext preprocessor


The fact of Php is, we can embed PHP in HTML code.


Primary and simple Syntax of Html: which we use in Php code:
<html>
<title>
</title>
<body>
</body>
</html>

Php syntax:


<? php
?>


Php code embedded with html code:


<html> <title <? print " Hellow World!" ?> </html>


then the out put will be Hellow World! as the title bar of the browser.


There are 5 characteristics for PHP:


1. Familiarity
2. Simplicity
3. Efficiency
4. Security and Flexibility.


Ok we will learn about these tommarow
thank you

No comments:

Post a Comment