Sunday, December 20, 2015

PHP Introduction

PHP Introduction

PHP is a server side scripting language implemented by Rasmus Lerdorf in 1995 using “C” and “Perl” Technologies. By using PHP we can develop Dynamic Web Application.

Static webpage: only information displays.
                     Ex: Newspaper
Dynamic webpage: We can login
                           Ex: Gmail, facebook

PHP stands for Personal Home page  and it’s contains it alias name i.e. Hypertext preprocessor

Features of PHP:-
  1. Cross Platform :- it can run under any tupes of operating system.
  2.  ross Server : - it can run under different types of webservers, like IIS, Apache, Tomcat etc…
  3. Cross database :- it supports any type of Database server.
  4.   PHP 5.0 Mysql :- PHP 5.0 is providing Mysql library to intract with mysql DB.
  5.   PHP Supports no.of object otiented programming concepts like Inheritance, Access specifiers etc.
  6.   PHP open source.
  7.   PHP supports different types of content management soft ware like JOOMLA, WORDPRESS, DRUPAL, MAGENTO etc. all CMS (content management system) softwares are open source softwares
  8.  PHP providing no.of security functions to apply security to application. 1-way encryption, 2-way encryption, Authentication etc.
  9.  PHP supports different types of editors to develop programes. We can also use light weight Editors (NOTEPAD, EDIT PLUS et c.)


  • PHP exicution is very fast because of ZEND Engine.
  •  ZEND Organization is maintaining the PHP Script, they introduced number of tools to work with PHP and also they are providing compleate support to PHP Proframmers their online.
  • PHP is very easy to understand & develop the application.
  • PHP is partially case sensitive language. In function point of view it is case in sensitive and variables point of view it is case sensitive.
  • Every statement in PHP, we should end with ";"(semicolon).
  • PHP is loosely typed language. Tha’s why no need to provide datatypes at the type variable declatation.
  • Variable names in PHPshould start with ‘$’(Dollar) sysmbol.
  • Every PHP File extension should be .php
  • PHP script we should include within the script declaration style tags.

<?php
  -----------------

?> 

No comments:

Post a Comment