Wednesday, 1 July 2015

PHP Introduction

The farther of php is Rasmus Lerdorf. It was started in the year 1994,when first version of php is introduce.
  • You must know the basics of HTML and Javascript before you proceding to the php.
  •  PHP support number of popular databases like MySQL, Informix, Oracle, Sybase, Microsoft SQL Server, Solid, Generic ODBC etc.
  • PHP script are executed on the server, and it is compatible with all the server like Apache, IIS etc.
  • PHP is free to download, its code are easy and freely available from the internet.
  • PHP language is simpler, efficient, secure, flexible and familiar to the users.
   About PHP File
  • PHP File contains text, CSS, javascipt, html tags.
  • PHP File has extention “.php, .php3, .phtml .”
<html>
<head>
<title>My Web Page</title>
</head>
<body>
  <?php
echo “My First Web Page using PHP”;
?>

</body>
</html>
The Output will be following:
My First Web Page using PHP

No comments:

Post a Comment