the php story. php story php is a programming language. incorporate(join) sophisticated business...

9
The PHP Story

Upload: lenard-stevens

Post on 24-Dec-2015

213 views

Category:

Documents


1 download

TRANSCRIPT

Page 1: The PHP Story. PHP Story PHP is a programming language. Incorporate(join) sophisticated business logic. Widely used general purpose scripting language

The PHP Story

Page 2: The PHP Story. PHP Story PHP is a programming language. Incorporate(join) sophisticated business logic. Widely used general purpose scripting language

PHP Story

• PHP is a programming language.• Incorporate(join) sophisticated business logic.• Widely used general purpose scripting

language.• Suited for web development.• Embedded(rooted) into HTML. • web developers can write dynamically

generated web pages quickly.

Page 3: The PHP Story. PHP Story PHP is a programming language. Incorporate(join) sophisticated business logic. Widely used general purpose scripting language

• data-driven web applications.• Because, it support for different database

systems.• PHP code is “embedded” inside a regular HTML

document.• executed by the web server when the

document is requested through a browser.• can code all complex things into our web pages

by using PHP.

Page 4: The PHP Story. PHP Story PHP is a programming language. Incorporate(join) sophisticated business logic. Widely used general purpose scripting language

• The server will execute our code and return the output to the browser.

• Because PHP code is executed on the server and not on the client.

Page 5: The PHP Story. PHP Story PHP is a programming language. Incorporate(join) sophisticated business logic. Widely used general purpose scripting language

whatmakes PHP so popular?

• Web developers have been creating Perl/CGI scripts to dynamically generate HTML pages.

• W3C standards has made JavaScript for modern browsers.

Page 6: The PHP Story. PHP Story PHP is a programming language. Incorporate(join) sophisticated business logic. Widely used general purpose scripting language

what makes PHP thepreferred web scripting language for developers around the

world?

• It has the unique distinction open-source server-side scripting language.

• easy to learn and extremely powerful to use.• PHP uses clear, simple syntax and delights in

non obfuscated(confused) code.• easy to read and understand.• encourages rapid(quick) application

development.

Page 7: The PHP Story. PHP Story PHP is a programming language. Incorporate(join) sophisticated business logic. Widely used general purpose scripting language

• There’s cost and availability.• PHP is available free of charge on the Internet.• It run variety of platforms and architectures,

including UNIX, Microsoft Windows, and Mac OS, as well as for most web servers.

Page 8: The PHP Story. PHP Story PHP is a programming language. Incorporate(join) sophisticated business logic. Widely used general purpose scripting language

• PHP is an interpreted language.• It enables us to perform incremental, iterative

development and testing without going through a compile-test-debug cycle each time we change our code.

• can speed the development cycle hugely.• PHP has a variety of data types, a powerful object-

oriented engine, a large library of built-in functions, and support for most current web technologies and protocols.

Page 9: The PHP Story. PHP Story PHP is a programming language. Incorporate(join) sophisticated business logic. Widely used general purpose scripting language

• web applications that must interface with a database for developers.

• So, PHP’s support for the MySQL RDBMS, as well as other commercial database systems.

• It allows data-heavy web applications. Eg. content portals or electronic-commerce applications.

• PHP and MySQL open-source projects makes some powerful interactions.