Skip to main content

WHAT IS PHP ?



WHAT IS PHP ?

PHP stands for PHP: hypertext preprocessor. It's an open source language used to develop web applications with rich graphical user interface and having a huge of support of open source user communities. The scripts written in this language are executed on server. 
php is scripting language,
PHP is a server-side scripting language designed primarily for web development but also used as a general-purpose programming language. Originally created by Rasmus Lerdorf in 1994,PHP originally stood for Personal Home Page

php generally used PHP code may be embedded into HTML code, or it can be used in combination with various web template systems, web content management systems and web frameworks.

PHP 3 and 4
On May 22, 2000, PHP 4, powered by the Zend Engine 1.0, was released, As of August 2008 this branch reached version 4.4.9. PHP 4 is no longer under development nor will any security updates be released
PHP 5
On July 13, 2004, PHP 5 was released, powered by the new Zend Engine II.
PHP 5 is Object oriented programming and consistent interface for accessing databases.Over time, PHP interpreters became available on most existing 32-bit and 64-bit operating systems,


php is scripting language,
PHP is a server-side scripting language designed primarily for web development but also used as a general-purpose programming language. Originally created by Rasmus Lerdorf in 1994,PHP originally stood for Personal Home Page


php generally used PHP code may be embedded into HTML code, or it can be used in combination with various web template systems, web content management systems and web frameworks.


PHP 3 and 4

On May 22, 2000, PHP 4, powered by the Zend Engine 1.0, was released, As of August 2008 this branch reached version 4.4.9. PHP 4 is no longer under development nor will any security updates be released

PHP 5

On July 13, 2004, PHP 5 was released, powered by the new Zend Engine II.
PHP 5 is Object oriented programming and consistent interface for accessing databases.Over time, PHP interpreters became available on most existing 32-bit and 64-bit operating systems,


PHP 6 and Unicode

a PHP 5.3 release was created in 2009, with many non-Unicode features back-ported from PHP 6, notably namespaces. In March 2010,
Initial hopes were that a new plan would be formed for Unicode integration, but as of 2014 none have been adopted.


PHP 7

During 2014 and 2015, a new major PHP version was developed, which was numbered PHP 7.
Because of major internal changes in phpng, it must receive a new major version number of PHP, rather than a minor PHP 5 release, according to PHP's release process

a PHP 5.3 release was created in 2009, with many non-Unicode features back-ported from PHP 6, notably namespaces. In March 2010,
Initial hopes were that a new plan would be formed for Unicode integration, but as of 2014 none have been adopted.

PHP 7
During 2014 and 2015, a new major PHP version was developed, which was numbered PHP 7.
Because of major internal changes in phpng, it must receive a new major version number of PHP, rather than a minor PHP 5 release, according to PHP's release process

WHAT ARE THE Prerequisites?

One should know HTML, CSS, JAVASCRIPT and MYSQL and also one should know at least basic programming & database concepts.
 
WHY SHOULD I USE PHP?

It is easy to learn. So it's an simple and reliable platform for the new webbies to start developing web applications having minimum programming skills. A php script can embed with HTML, CSS, JAVASCRIPT, JQUERY, AJAX, MYSQL etc. It runs on various platforms like windows, Linux, UNIX, mac os x etc. It supports almost all servers used today like Apache, IIS etc and popular databases like MySQL, SQLite, sqlitepo, postgres, Sybase etc and most important it's free. We can download it from http://www.php.net

 
WRITE YOUR FIRST SCRIPT?
 
<html>

<head>

<title>My PHP Script </title>
</head>
<body>
<?php
echo "<h1>Hello Welcome to the world of PHP</h1>";
?>
</body>
</html>
 

Comments

disuza said…
Very nic blog

Popular posts from this blog

using PDO database connection add,update,delete,edit operation

PDO advantage : 1-Object Oriented 2-Bind parameters in statements (security) 3-Allows for prepared statements and rollback functionality (consistency) 4-Throws catcheable exceptions for better error handling (quality) 5-Exception mode; no need to check error state after each API call. It's best to tell PDO how you'd like the data to be fetched. You have the following options: 1-PDO::FETCH_ASSOC: returns an array indexed by column name. 2-PDO::FETCH_BOTH: (default):returns an array indexed by both column name and number. 3-PDO::FETCH_BOUND:Assigns the values of your columns to the variables set with the ->bindColumn() method. 4-PDO::FETCH_CLASS: Assigns the values of your columns to properties of the named class. It will create the properties if matching properties do not exist. 5-PDO::FETCH_INTO:Updates an existing instance of the named class. 6-PDO::FETCH_LAZY: Combines. 7-PDO::FETCH_BOTH/PDO:FETCH_OBJ, creating the object variable names as t...

Profile Share Fixing the Thumbnail Image, Title and Description for Shared Links

Profile Share Fixing the Thumbnail Image, Title and Description for Shared Links user want to share any information then use following code  and read step by step Profile Share Fixing the Thumbnail Image, Title and Description for Shared Links if you want share profile on following social link : 1-Facebook 2-twitter.com 3-LinkedIn 4-google +, Code link : https://drive.google.com/open?id=1IzTZZh_0euDqFSHL_vPRiQePlNTw3h-q Demo link : http://freeteachnology.hol.es/socialshare/ To modify a page's thumbnail image, description, and additional metadata for these services, you can provide meta tags in the HTML code of the page.Implementing Open Graph Meta Tags You can implement meta tags in a number of ways. In content management systems might  be allow you to modify a page's meta tags , then use following code in meta section of your project code, <link href="bootstrap.min.css" rel="stylesheet"> <link href="bootstrap-tour.m...

GUID for globally unique identifier

How to create GUID in php 1-guid stands for globally unique identifier generally used to create random unique strings in php, create access token in php 2-Mostly use of GUID for generating access token, generate unique id, generating unique string in php. Using this article how to create guide in php you can create a random string for any use to keep unique 3-GUID consists of alphanumeric characters only and is grouped in five groups separated by hyphens as seen in this example: 3F2504E0-4F89-11D3-9A0C-0305E82C3301 Eg:- <?php /** * Generate Globally Unique Identifier (GUID) * E.g. 2EF40F5A-ADE8-5AE3-2491-85CA5CBD6EA7 * * @param boolean $include_braces Set to true if the final guid needs * to be wrapped in curly braces * @return string */ function generateGuid($include_braces = false) { if (function_exists('com_create_guid')) { if ($include_braces === true) { return com_create_guid(); } else { return substr(com_cr...