PHP Tutorial
PHP Tutorial
INTRODUCTION
What is PHP?
• PHP is an acronym for "PHP: Hypertext
Preprocessor"
• PHP is a widely-used, open source scripting
language
PHP• is aPHP scripts
server are executed
scripting on and
language, the server
a powerful tool
for making
• PHP dynamic and interactive Web pages.
is free to download and use
PHP is a widely-used, free, and efficient alternative to
competitors such as Microsoft's ASP.
PHP 7 is the latest stable release.
What You Should Already
Know
Before you continue you should have
a basic understanding of the
following:
HTML
CSS
JAVASCRIPT
PHP is an amazing and
popular language!
<?php
// PHP code goes here
?>
<?php
echo "Hello World!";
?>
</body>
</html>
Introduction to XAMPP local server
XAMPP is the perfect tool to setup a web server
locally.
XAMPP is a free and open source cross-platform
web server solution stack package developed by
Apache Friends, consisting mainly of the Apache
HTTP Server, MariaDB database and interpreters for
scripts written in the PHP and Perl programming
languages.
Example:
Creating (Declaring) PHP Variables.
In PHP, a variable starts with the $ sign, followed by the name of the
variable.
Example:
<?php
$txt = “Hello World..!”;
$x = 5;
$y = 10.5;
?>
After the execution of the statements above, the variable $txt will hold the
value Hello World!, the variable $x will hold the value 5, and the variable $y
will hold the value 10.5.
Note.
When you assign a text value to a variable, put quotes around the value.
Note:
Unlike other programming languages, PHP has no command for declaring a
variable. It is created the moment you first assign a value to it.
PHP Variables
A variable can have a short name (like x and y) or a more
descriptive name (age, carname, total_volume).
echo and print are more or less the same. They are
both used to output data to the screen.
Display Text
<?php
$txt1 = “Learn PHP”;
$txt2 = “W3schools.com”;
$x = 5;
$y = 4;
Display Text
<?php
$x = 10.365;
var_dump($x);
?>
PHP Boolean
A Boolean represents two possible states:
TRUE or FALSE.
$x = true;
$y = false;
$num = 10000;
?>
PHP Array
An array store multiple values in one single
variable.
}
Example
// create an object
echo $this->model;
?>
PHP NULL
Null is a special data type which can have only
one value: NULL.
A variable of data type NULL is a variable that
has no value assigned to it.
Tip: if a variable is create without a value, it is
automatically assigned a value of NULL.
Variable can also be emptied by setting the value
to NULL:
Example
<?php
$x = ”Hello World!”;
$x = null;
var_dump($x);
?>
PHP Operators
Operators are used to perform operations on
variables and values.
PHP divides the operators in the following
groups:
Arithmetic operators
Assignment operators
Comparison operators
Increment/Decrement operators
Logical operators
String operators
Array operators
Conditional assignment operators
PHP – The IF statement
The if statement executes some
code if one condition is true.
Syntax
If (condition) {
code to be executed if condition is
true;
}
Example
<?php
$t = date(“H”);
if ($t < “20”) {
echo “Have a good day!”;
} ?>
PHP – The IF…ELSE
statement
The if….else statement executes
some code if one condition is true
and another condition is false.
Syntax
If (condition) {
code to be executed if condition is
true;
} else {
Example
code to be executed if condition is
false;
}
PHP – The IF…ELSE
statement
The if….else statement executes
some code if one condition is true
and another condition is false.
Syntax
If (condition)
<?php {
$t =to
code date(“H”);
be executed if condition is
if ($t < “20”) {
true; echo “Have a good morning!”;
} else
Example { {
} else
codeechoto“Have a good night!”;
be executed if condition is
}
false;?>
}
PHP – The IF…ELSEIF…ELSE
statement
If (condition)
The {
if….elseif…else statement
code todifferent
executes be executed if condition
codes for more is
true;one conditions.
than
} elseif
Syntax (condition) {
code to be executed if first
condition is false and this condition
is true;
} else {
Example
code to be executed if condition is
false;
}
PHP – The IF…ELSEIF…ELSE
statement
If (condition)
The {
if….elseif…else statement
<?php
executes
code todifferent codes
be executed for more is
if condition
than$t =
true; date(“H”);
one conditions.
}ifelseif
($t < (condition)
Syntax “10”) { {
echo “Have a good morning!”;
code to be executed if first
} elseif ($t < “20”) {
condition is false and this condition
echo “Have a good evening!”;
is true;
} else {
} echo
else “Have
Example { a good night!”;
}code to be executed if condition is
false;
?>
}
SIMPLE PHP PROGRAM
Syntax
<?php
$x = 1;
while ($x <= 5) {
echo "The number is: $x
<br>";
$x++;
}
?>
PHP While Loop
Example explained
function functionName() {
code to be executed;
}
<?php
function writeMsg() {
echo “Hello world!”;
}
writeMsg(); //call the function
?>
PHP User Defined Functions
Example explained
$GLOBALS
$_SERVER
$_REQUEST
$_POST
$_GET
$_FILES
$_ENV
$_COOKIE
$_SESSION
GET vs. POST
Both GET and POST create an array(e.g.
array(key1 =>value1, key2=>value2,
key3=>value3….)). This array holds
key/value pairs, where keys are the name
of the form controls and values are the
input data from the user.
Both GET and POST are treated as $_GET
and $_POST. These are superglobals,
which means that they are always
accessible, regardless of scope – and you
can access them from any function, class
or file without having to do anything
CONTINUED
special.
GET vs. POST
$_GET is an array of variables passed to
the current script via the URL parameters.