by eturo
PHP gives you the freedom to add
advanced features to your website. The aim of this chapter is to give you an
easy, yet thorough and accurate introduction to PHP. It starts from scratch but
requires that you already have a good knowledge of HTML.
PHP can be used in many contexts:
·
discussion forums
·
polls
·
shops
·
SMS gateways
·
mailing lists, etc…
The only limitation with what you
choose to do with PHP is your imagination.
PHP is not hard to learn, but be aware that PHP is more sophisticated and demanding
to learn than HTML. Therefore, patience
in the process is a virtue.
What is
needed?
1. It
is assumed that you already have a text
editor and know how it is used.
2. Next,
you need access to a computer or a server that can run PHP. In contrast to
HTML and CSS, PHP is not affected by which browser your visitors use,
but by the type of server that's hosting your pages. This is because PHP is a server-side
technology.
Lesson 1: What is PHP
Whenever anyone is learning PHP, the
most common questions that first come up are: What is PHP? And how does it
work?
¤ What
is PHP?
Ø
PHP was originally an acronym for Personal
Home Pages, but is now a recursive acronym for PHP: Hypertext
Preprocessor
Ø
PHP was originally developed by the Danish Greenlander Rasmus Lerdorf, and
was subsequently developed as open source
Ø
PHP is not a proper web standard -
but an open-source technology.
Ø
PHP is neither real programming
language - but PHP lets you use so-called scripting
in your documents
Ø
PH page has file extension name .php
that contains a combination of HTML tags and scripts that run on a web server
¤ How
does PHP work?
The best way to explain how PHP works is by comparing it
with standard HTML. Imagine you type the address of an HTML document (e.g. http://www.mysite.com/page.htm)
in the address line of the browser. This way you request an HTML page.
It could be illustrated like this:
As you can see, the server simply sends an HTML file to the
client. But if you instead type http://www.mysite.com/page.php - and
thus request an PHP page - the server is put to work:
The server first reads the PHP file carefully to see if
there are any tasks that need to be executed. Only when the server has done
what it is supposed to do, the result is then sent to the client. It is
important to understand that the client only sees the result of the
server's work, not the actual instructions.
This means that if you click "view source" on a PHP page, you do not see the PHP codes - only basic HTML tags. Therefore, you
cannot see how a PHP page is made by using "view source".
Lesson 2: Servers
Ø PHP is a server-side technology
o
Therefore,
you need to have a server to run PHP. But it doesn't need to cost you anything
to make this upgrade and there are several options for doing so.
Ø Methods to run your PHP files or pages:
Option 1: Website on a hosted server
You can choose to
have a website on a host that supports PHP.
·
if
you don't already have a website on hosted server you can create a free account
on
000webhost.com which supports PHP
Option 2: Install PHP on your computer
This option is only recommend for
experienced computer users, but it can obviously be done. Here are links to
downloads and installation guides:
Option 3: XAMPP
XAMPP is a program that
makes it easy and possible to run the PHP directly on your computer without
having to install PHP on our own.
XAMPP’s name is an acronym
for: