This document provides an introduction and overview of PHP and MySQL. It discusses what PHP and MySQL are, how they are used together, basic syntax and concepts in PHP, and how to install and set up a PHP and MySQL development environment. Some key points covered include:
- PHP is a server-side scripting language commonly used to create dynamic web pages and applications. It supports integration with many databases including MySQL.
- MySQL is a popular open-source database server that can be used with PHP.
- Basic PHP syntax includes opening and closing tags <?php ?> and variables starting with $. Conditional statements like if/else and switch can be used to control program flow.
- PHP, MySQL and
Introduction to PHP as a powerful server-side scripting language, its installation requirements, basic understanding of key terms like MySQL, and how PHP integrates with web technologies.
Details on setting up the PHP environment, including installation of Apache, MySQL, and PHP, with links to their respective download sites and basic installation guides.
Overview of PHP syntax, basic constructs, including PHP file types, comments, variables, and operators such as arithmetic, assignment, and comparison.
Explanation of PHP’s control structures, including conditional statements (if/else, switch) and handling conditional logic through examples with practical syntax.
Introduction to arrays in PHP - types (numeric, associative, and multidimensional), usage examples, functions, and syntax related to PHP arrays.
Creation and use of PHP functions including defining parameters, returning values, and examples of functions that utilize parameters.
Basics of file handling in PHP using functions like fopen(), fclose(), reading lines and characters, and checking end-of-file.
Managing user states with cookies and sessions in PHP, including creating, retrieving, and manipulating session data and cookies.
How to send emails using PHP’s mail() function, creating simple email forms, and common security practices for email handling.
PHP error handling methods, constructing custom error handlers, and implementing effective error logging strategies for better debugging.
Importance of validating and filtering user input with PHP filters, using various filtering functions to sanitize and validate data.
Basics of MySQL database integration with PHP, including connection setup, selecting databases, and executing query commands.
Executing basic CRUD operations in MySQL with PHP including creating, reading, updating, and deleting records in a database.
Implementing AJAX to create interactive applications, including live search features and displaying real-time data without page reload.
PHP Tutorial
PHP Introduction
PHP is a powerful tool for making dynamic and interactive Web pages.
PHP is the widelyused, free, and efficient alternative to competitors such as Microsoft's ASP.
PHP is a serverside scripting language.
What You Should Already Know
Before you continue you should have a basic understanding of the following:
• HTML/XHTML
• JavaScript
What is PHP?
• PHP stands for PHP: Hypertext Preprocessor
• PHP is a serverside scripting language, like ASP
• PHP scripts are executed on the server
• PHP supports many databases (MySQL, Informix, Oracle, Sybase, Solid, PostgreSQL, Generic ODBC, etc.)
• PHP is an open source software
• PHP is free to download and use
What is a PHP File?
• PHP files can contain text, HTML tags and scripts
• PHP files are returned to the browser as plain HTML
• PHP files have a file extension of ".php", ".php3", or ".phtml"
What is MySQL?
• MySQL is a database server
• MySQL is ideal for both small and large applications
• MySQL supports standard SQL
• MySQL compiles on a number of platforms
• MySQL is free to download and use
PHP + MySQL
• PHP combined with MySQL are crossplatform (you can develop in Windows and serve on a Unix platform)
Why PHP?
• PHP runs on different platforms (Windows, Linux, Unix, etc.)
• PHP is compatible with almost all servers used today (Apache, IIS, etc.)
• PHP is FREE to download from the official PHP resource: www.php.net
• PHP is easy to learn and runs efficiently on the server side
Where to Start?
To get access to a web server with PHP support, you can:
2.
• Install Apache (or IIS) on your own server, install PHP, and MySQL
• Or find a web hosting plan with PHP and MySQL support
PHP Installation
What do you Need?
If your server supports PHP you don't need to do anything.
Just create some .php files in your web directory, and the server will parse them for you. Because it is free, most web hosts offer PHP
support.
However, if your server does not support PHP, you must install PHP.
Here is a link to a good tutorial from PHP.net on how to install PHP5: http://www.php.net/manual/en/install.php
Download PHP
Download PHP for free here: http://www.php.net/downloads.php
Download MySQL Database
Download MySQL for free here: http://www.mysql.com/downloads/index.html
Download Apache Server
Download Apache for free here: http://httpd.apache.org/download.cgi
PHP Syntax
PHP code is executed on the server, and the plain HTML result is sent to the browser.
Basic PHP Syntax
A PHP scripting block always starts with <?php and ends with ?>. A PHP scripting block can be placed anywhere in the document.
On servers with shorthand support enabled you can start a scripting block with <? and end with ?>.
For maximum compatibility, we recommend that you use the standard form (<?php) rather than the shorthand form.
<?php
?>
A PHP file normally contains HTML tags, just like an HTML file, and some PHP scripting code.
Below, we have an example of a simple PHP script which sends the text "Hello World" to the browser:
<html>
<body>
<?php
echo "Hello World";
?>
</body>
</html>
Each code line in PHP must end with a semicolon. The semicolon is a separator and is used to distinguish one set of instructions from
another.
There are two basic statements to output text with PHP: echo and print. In the example above we have used the echo statement to
output the text "Hello World".
PHP Operators
This section lists the different operators used in PHP.
Arithmetic Operators
Operator Description Example Result
+ Addition x=2 4
x+2
Subtraction x=2 3
5x
* Multiplication x=4 20
x*5
/ Division 15/5 3
5/2 2.5
% Modulus (division remainder) 5%2 1
10%8 2
10%2 0
++ Increment x=5 x=6
x++
Decrement x=5 x=4
x
Assignment Operators
Operator Example Is The Same As
= x=y x=y
+= x+=y x=x+y
= x=y x=xy
*= x*=y x=x*y
/= x/=y x=x/y
.= x.=y x=x.y
%= x%=y x=x%y
Comparison Operators
Operator Description Example
== is equal to 5==8 returns false
!= is not equal 5!=8 returns true
<> is not equal 5<>8 returns true
> is greater than 5>8 returns false
< is less than 5<8 returns true
>= is greater than or equal to 5>=8 returns false
<= is less than or equal to 5<=8 returns true
Logical Operators
Operator Description Example
&& and x=6
y=3
(x < 10 && y > 1) returns true
|| or x=6
y=3
(x==5 || y==5) returns false
! not x=6
5.
y=3
!(x==y) returns true
PHP If...Else Statements
Conditional statements are used to perform different actions based on different conditions.
Conditional Statements
Very often when you write code, you want to perform different actions for different decisions.
You can use conditional statements in your code to do this.
In PHP we have the following conditional statements:
• if statement use this statement to execute some code only if a specified condition is true
• if...else statement use this statement to execute some code if a condition is true and another code if the condition is false
• if...elseif....else statement use this statement to select one of several blocks of code to be executed
• switch statement use this statement to select one of many blocks of code to be executed
The if Statement
Use the if statement to execute some code only if a specified condition is true.
Syntax
if (condition) code to be executed if condition is true;
The following example will output "Have a nice weekend!" if the current day is Friday:
<html>
<body>
<?php
$d=date("D");
if ($d=="Fri") echo "Have a nice weekend!";
?>
</body>
</html>
Notice that there is no ..else.. in this syntax. The code is executed only if the specified condition is true.
The if...else Statement
Use the if....else statement to execute some code if a condition is true and another code if a condition is false.
Syntax
if (condition)
code to be executed if condition is true;
else
code to be executed if condition is false;
array_intersect_uassoc() Compares array keys and values, with an additional usermade function 5
check, and returns the matches
array_intersect_ukey() Compares array keys, with an additional usermade function check, and 5
returns the matches
array_key_exists() Checks if the specified key exists in the array 4
array_keys() Returns all the keys of an array 4
array_map() Sends each value of an array to a usermade function, which returns new 4
values
array_merge() Merges one or more arrays into one array 4
array_merge_recursive() Merges one or more arrays into one array 4
array_multisort() Sorts multiple or multidimensional arrays 4
array_pad() Inserts a specified number of items, with a specified value, to an array 4
array_pop() Deletes the last element of an array 4
array_product() Calculates the product of the values in an array 5
array_push() Inserts one or more elements to the end of an array 4
array_rand() Returns one or more random keys from an array 4
array_reduce() Returns an array as a string, using a userdefined function 4
array_reverse() Returns an array in the reverse order 4
array_search() Searches an array for a given value and returns the key 4
array_shift() Removes the first element from an array, and returns the value of the 4
removed element
array_slice() Returns selected parts of an array 4
array_splice() Removes and replaces specified elements of an array 4
array_sum() Returns the sum of the values in an array 4
array_udiff() Compares array values in a usermade function and returns an array 5
array_udiff_assoc() Compares array keys, and compares array values in a usermade function, 5
and returns an array
array_udiff_uassoc() Compares array keys and array values in usermade functions, and returns an 5
array
array_uintersect() Compares array values in a usermade function and returns an array 5
array_uintersect_assoc() Compares array keys, and compares array values in a usermade function, 5
and returns an array
array_uintersect_uassoc() Compares array keys and array values in usermade functions, and returns an 5
array
array_unique() Removes duplicate values from an array 4
array_unshift() Adds one or more elements to the beginning of an array 4
array_values() Returns all the values of an array 4
array_walk() Applies a user function to every member of an array 3
array_walk_recursive() Applies a user function recursively to every member of an array 5
arsort() Sorts an array in reverse order and maintain index association 3
asort() Sorts an array and maintain index association 3
compact() Create array containing variables and their values 4
count() Counts elements in an array, or properties in an object 3
current() Returns the current element in an array 3
each() Returns the current key and value pair from an array 3
end() Sets the internal pointer of an array to its last element 3
extract() Imports variables into the current symbol table from an array 3
in_array() Checks if a specified value exists in an array 4
key() Fetches a key from an array 3
krsort() Sorts an array by key in reverse order 3
ksort() Sorts an array by key 3
12.
list() Assigns variables as if they were an array 3
natcasesort() Sorts an array using a case insensitive "natural order" algorithm 4
natsort() Sorts an array using a "natural order" algorithm 4
next() Advance the internal array pointer of an array 3
pos() Alias of current() 3
prev() Rewinds the internal array pointer 3
range() Creates an array containing a range of elements 3
reset() Sets the internal pointer of an array to its first element 3
rsort() Sorts an array in reverse order 3
shuffle() Shuffles an array 3
sizeof() Alias of count() 3
sort() Sorts an array 3
uasort() Sorts an array with a userdefined function and maintain index association 3
uksort() Sorts an array by keys using a userdefined function 3
usort() Sorts an array by values using a userdefined function 3
PHP Array Constants
PHP: indicates the earliest version of PHP that supports the constant.
Constant Description PHP
CASE_LOWER Used with array_change_key_case() to convert array keys to lower case
CASE_UPPER Used with array_change_key_case() to convert array keys to upper case
SORT_ASC Used with array_multisort() to sort in ascending order
SORT_DESC Used with array_multisort() to sort in descending order
SORT_REGULAR Used to compare items normally
SORT_NUMERIC Used to compare items numerically
SORT_STRING Used to compare items as strings
SORT_LOCALE_STRING Used to compare items as strings, based on the current locale 4
COUNT_NORMAL
COUNT_RECURSIVE
EXTR_OVERWRITE
EXTR_SKIP
EXTR_PREFIX_SAME
EXTR_PREFIX_ALL
EXTR_PREFIX_INVALID
EXTR_PREFIX_IF_EXISTS
EXTR_IF_EXISTS
EXTR_REFS
PHP Looping While Loops
Loops execute a block of code a specified number of times, or while a specified condition is true.
13.
PHP Loops
Often when you write code, you want the same block of code to run over and over again in a row. Instead of adding several almost
equal lines in a script we can use loops to perform a task like this.
In PHP, we have the following looping statements:
• while loops through a block of code while a specified condition is true
• do...while loops through a block of code once, and then repeats the loop as long as a specified condition is true
• for loops through a block of code a specified number of times
• foreach loops through a block of code for each element in an array
The while Loop
The while loop executes a block of code while a condition is true.
Syntax
while (condition)
{
code to be executed;
}
Example
The example below defines a loop that starts with i=1. The loop will continue to run as long as i is less than, or equal to 5. i will
increase by 1 each time the loop runs:
<html>
<body>
<?php
$i=1;
while($i<=5)
{
echo "The number is " . $i . "<br />";
$i++;
}
?>
</body>
</html>
Output:
The number is 1
The number is 2
The number is 3
The number is 4
The number is 5
The do...while Statement
The do...while statement will always execute the block of code once, it will then check the condition, and repeat the loop while the
condition is true.
Syntax
do
{
code to be executed;
timestamp Optional. Specifies a timestamp. Default is the current date and time
PHP Date() Format the Date
The required format parameter in the date() function specifies how to format the date/time.
Here are some characters that can be used:
• d Represents the day of the month (01 to 31)
• m Represents a month (01 to 12)
• Y Represents a year (in four digits)
A list of all the characters that can be used in the format parameter, can be found in our PHP Date reference.
Other characters, like"/", ".", or "" can also be inserted between the letters to add additional formatting:
<?php
echo date("Y/m/d") . "<br />";
echo date("Y.m.d") . "<br />";
echo date("Ymd")
?>
The output of the code above could be something like this:
2009/05/11
2009.05.11
20090511
PHP Date() Adding a Timestamp
The optional timestamp parameter in the date() function specifies a timestamp. If you do not specify a timestamp, the current date and
time will be used.
The mktime() function returns the Unix timestamp for a date.
The Unix timestamp contains the number of seconds between the Unix Epoch (January 1 1970 00:00:00 GMT) and the time
specified.
Syntax for mktime()
mktime(hour,minute,second,month,day,year,is_dst)
To go one day in the future we simply add one to the day argument of mktime():
<?php
$tomorrow = mktime(0,0,0,date("m"),date("d")+1,date("Y"));
echo "Tomorrow is ".date("Y/m/d", $tomorrow);
?>
The output of the code above could be something like this:
Tomorrow is 2009/05/12
PHP Date / Time Functions
PHP Date / Time Introduction
The date/time functions allow you to extract and format the date and time on the server.
22.
Note: These functions depend on the locale settings of the server!
Installation
The date/time functions are part of the PHP core. There is no installation needed to use these functions.
Runtime Configuration
The behavior of the date/time functions is affected by settings in php.ini.
Date/Time configuration options:
Name Default Description Changeable
date.default_latitude "31.7667" Specifies the default latitude (available since PHP 5). PHP_INI_ALL
This option is used by date_sunrise() and date_sunset()
date.default_longitude "35.2333" Specifies the default longitude (available since PHP 5). PHP_INI_ALL
This option is used by date_sunrise() and date_sunset()
date.sunrise_zenith "90.83" Specifies the default sunrise zenith (available since PHP_INI_ALL
PHP 5). This option is used by date_sunrise() and
date_sunset()
date.sunset_zenith "90.83" Specifies the default sunset zenith (available since PHP PHP_INI_ALL
5). This option is used by date_sunrise() and
date_sunset()
date.timezone "" Specifies the default timezone (available since PHP PHP_INI_ALL
5.1)
PHP Date / Time Functions
PHP: indicates the earliest version of PHP that supports the function.
Function Description PHP
checkdate() Validates a Gregorian date 3
date_default_timezone_get() Returns the default time zone 5
date_default_timezone_set() Sets the default time zone 5
date_sunrise() Returns the time of sunrise for a given day / location 5
date_sunset() Returns the time of sunset for a given day / location 5
date() Formats a local time/date 3
getdate() Returns an array that contains date and time information for a Unix 3
timestamp
gettimeofday() Returns an array that contains current time information 3
gmdate() Formats a GMT/UTC date/time 3
gmmktime() Returns the Unix timestamp for a GMT date 3
gmstrftime() Formats a GMT/UTC time/date according to locale settings 3
idate() Formats a local time/date as integer 5
localtime() Returns an array that contains the time components of a Unix timestamp 4
microtime() Returns the microseconds for the current time 3
mktime() Returns the Unix timestamp for a date 3
strftime() Formats a local time/date according to locale settings 3
strptime() Parses a time/date generated with strftime() 5
strtotime() Parses an English textual date or time into a Unix timestamp 3
23.
time() Returns the current time as a Unix timestamp 3
PHP Date / Time Constants
PHP: indicates the earliest version of PHP that supports the constant.
Constant Description PHP
DATE_ATOM Atom (example: 20050815T16:13:03+0000)
DATE_COOKIE HTTP Cookies (example: Sun, 14 Aug 2005 16:13:03 UTC)
DATE_ISO8601 ISO8601 (example: 20050814T16:13:03+0000)
DATE_RFC822 RFC 822 (example: Sun, 14 Aug 2005 16:13:03 UTC)
DATE_RFC850 RFC 850 (example: Sunday, 14Aug05 16:13:03 UTC)
DATE_RFC1036 RFC 1036 (example: Sunday, 14Aug05 16:13:03 UTC)
DATE_RFC1123 RFC 1123 (example: Sun, 14 Aug 2005 16:13:03 UTC)
DATE_RFC2822 RFC 2822 (Sun, 14 Aug 2005 16:13:03 +0000)
DATE_RSS RSS (Sun, 14 Aug 2005 16:13:03 UTC)
DATE_W3C World Wide Web Consortium (example: 20050814T16:13:03+0000)
PHP Include File
Server Side Includes (SSI)
You can insert the content of one PHP file into another PHP file before the server executes it, with the include() or require() function.
The two functions are identical in every way, except how they handle errors:
• include() generates a warning, but the script will continue execution
• require() generates a fatal error, and the script will stop
These two functions are used to create functions, headers, footers, or elements that will be reused on multiple pages.
Server side includes saves a lot of work. This means that you can create a standard header, footer, or menu file for all your web pages.
When the header needs to be updated, you can only update the include file, or when you add a new page to your site, you can simply
change the menu file (instead of updating the links on all your web pages).
PHP include() Function
The include() function takes all the content in a specified file and includes it in the current file.
If an error occurs, the include() function generates a warning, but the script will continue execution.
Example 1
Assume that you have a standard header file, called "header.php". To include the header file in a page, use the include() function:
<html>
<body>
<?php include("header.php"); ?>
<h1>Welcome to my home page!</h1>
<p>Some text.</p>
</body>
</html>
The file may be opened in one of the following modes:
Modes Description
r Read only. Starts at the beginning of the file
r+ Read/Write. Starts at the beginning of the file
w Write only. Opens and clears the contents of file; or creates a new file if it doesn't exist
w+ Read/Write. Opens and clears the contents of file; or creates a new file if it doesn't exist
a Append. Opens and writes to the end of the file or creates a new file if it doesn't exist
a+ Read/Append. Preserves file content by writing to the end of the file
x Write only. Creates a new file. Returns FALSE and an error if file already exists
x+ Read/Write. Creates a new file. Returns FALSE and an error if file already exists
Note: If the fopen() function is unable to open the specified file, it returns 0 (false).
Example
The following example generates a message if the fopen() function is unable to open the specified file:
<html>
<body>
<?php
$file=fopen("welcome.txt","r") or exit("Unable to open file!");
?>
</body>
</html>
Closing a File
The fclose() function is used to close an open file:
<?php
$file = fopen("test.txt","r");
//some code to be executed
fclose($file);
?>
Check Endoffile
The feof() function checks if the "endoffile" (EOF) has been reached.
The feof() function is useful for looping through data of unknown length.
Note: You cannot read from files opened in w, a, and x mode!
if (feof($file)) echo "End of file";
Reading a File Line by Line
The fgets() function is used to read a single line from a file.
Note: After a call to this function the file pointer has moved to the next line.
user_agent NULL Defines the user agent for PHP to send (available since PHP_INI_ALL
PHP 4.3)
default_socket_timeout "60" Sets the default timeout, in seconds, for socket based PHP_INI_ALL
streams (available since PHP 4.3)
from "" Defines the anonymous FTP password (your email PHP_INI_ALL
address)
auto_detect_line_endings "0" When set to "1", PHP will examine the data read by PHP_INI_ALL
fgets() and file() to see if it is using Unix, MSDos or
Mac lineending characters (available since PHP 4.3)
Unix / Windows Compatibility
When specifying a path on Unix platforms, the forward slash (/) is used as directory separator. However, on Windows platforms, both
forward slash (/) and backslash () can be used.
PHP Filesystem Functions
PHP: indicates the earliest version of PHP that supports the function.
Function Description PHP
basename() Returns the filename component of a path 3
chgrp() Changes the file group 3
chmod() Changes the file mode 3
chown() Changes the file owner 3
clearstatcache() Clears the file status cache 3
copy() Copies a file 3
delete() See unlink() or unset()
dirname() Returns the directory name component of a path 3
disk_free_space() Returns the free space of a directory 4
disk_total_space() Returns the total size of a directory 4
diskfreespace() Alias of disk_free_space() 3
fclose() Closes an open file 3
feof() Tests for endoffile on an open file 3
fflush() Flushes buffered output to an open file 4
fgetc() Returns a character from an open file 3
fgetcsv() Parses a line from an open file, checking for CSV fields 3
fgets() Returns a line from an open file 3
fgetss() Returns a line, with HTML and PHP tags removed, from an open file 3
file() Reads a file into an array 3
file_exists() Checks whether or not a file or directory exists 3
file_get_contents() Reads a file into a string 4
file_put_contents Writes a string to a file 5
fileatime() Returns the last access time of a file 3
filectime() Returns the last change time of a file 3
filegroup() Returns the group ID of a file 3
fileinode() Returns the inode number of a file 3
filemtime() Returns the last modification time of a file 3
fileowner() Returns the user ID (owner) of a file 3
fileperms() Returns the permissions of a file 3
29.
filesize() Returns the file size 3
filetype() Returns the file type 3
flock() Locks or releases a file 3
fnmatch() Matches a filename or string against a specified pattern 4
fopen() Opens a file or URL 3
fpassthru() Reads from an open file, until EOF, and writes the result to the output buffer 3
fputcsv() Formats a line as CSV and writes it to an open file 5
fputs() Alias of fwrite() 3
fread() Reads from an open file 3
fscanf() Parses input from an open file according to a specified format 4
fseek() Seeks in an open file 3
fstat() Returns information about an open file 4
ftell() Returns the current position in an open file 3
ftruncate() Truncates an open file to a specified length 4
fwrite() Writes to an open file 3
glob() Returns an array of filenames / directories matching a specified pattern 4
is_dir() Checks whether a file is a directory 3
is_executable() Checks whether a file is executable 3
is_file() Checks whether a file is a regular file 3
is_link() Checks whether a file is a link 3
is_readable() Checks whether a file is readable 3
is_uploaded_file() Checks whether a file was uploaded via HTTP POST 3
is_writable() Checks whether a file is writeable 4
is_writeable() Alias of is_writable() 3
link() Creates a hard link 3
linkinfo() Returns information about a hard link 3
lstat() Returns information about a file or symbolic link 3
mkdir() Creates a directory 3
move_uploaded_file() Moves an uploaded file to a new location 4
parse_ini_file() Parses a configuration file 4
pathinfo() Returns information about a file path 4
pclose() Closes a pipe opened by popen() 3
popen() Opens a pipe 3
readfile() Reads a file and writes it to the output buffer 3
readlink() Returns the target of a symbolic link 3
realpath() Returns the absolute pathname 4
rename() Renames a file or directory 3
rewind() Rewinds a file pointer 3
rmdir() Removes an empty directory 3
set_file_buffer() Sets the buffer size of an open file 3
stat() Returns information about a file 3
symlink() Creates a symbolic link 3
tempnam() Creates a unique temporary file 3
tmpfile() Creates a unique temporary file 3
touch() Sets access and modification time of a file 3
umask() Changes file permissions for files 3
unlink() Deletes a file 3
30.
PHP Filesystem Constants
PHP: indicates the earliest version of PHP that supports the constant.
Constant Description PHP
GLOB_BRACE
GLOB_ONLYDIR
GLOB_MARK
GLOB_NOSORT
GLOB_NOCHECK
GLOB_NOESCAPE
PATHINFO_DIRNAME
PATHINFO_BASENAME
PATHINFO_EXTENSION
FILE_USE_INCLUDE_PATH
FILE_APPEND
FILE_IGNORE_NEW_LINES
FILE_SKIP_EMPTY_LINES
PHP File Upload
With PHP, it is possible to upload files to the server.
Create an UploadFile Form
To allow users to upload files from a form can be very useful.
Look at the following HTML form for uploading files:
<html>
<body>
<form action="upload_file.php" method="post"
enctype="multipart/formdata">
<label for="file">Filename:</label>
<input type="file" name="file" id="file" />
<br />
<input type="submit" name="submit" value="Submit" />
</form>
</body>
</html>
Notice the following about the HTML form above:
• The enctype attribute of the <form> tag specifies which contenttype to use when submitting the form. "multipart/form
data" is used when a form requires binary data, like the contents of a file, to be uploaded
• The type="file" attribute of the <input> tag specifies that the input should be processed as a file. For example, when viewed
in a browser, there will be a browsebutton next to the input field
Note: Allowing users to upload files is a big security risk. Only permit trusted users to perform file uploads.
Create The Upload Script
The "upload_file.php" file contains the code for uploading a file:
PHP Sending Emails
PHP allows you to send emails directly from a script.
The PHP mail() Function
The PHP mail() function is used to send emails from inside a script.
Syntax
mail(to,subject,message,headers,parameters)
Parameter Description
to Required. Specifies the receiver / receivers of the email
subject Required. Specifies the subject of the email. Note: This parameter cannot contain any newline
characters
message Required. Defines the message to be sent. Each line should be separated with a LF (n). Lines
should not exceed 70 characters
headers Optional. Specifies additional headers, like From, Cc, and Bcc. The additional headers should
be separated with a CRLF (rn)
parameters Optional. Specifies an additional parameter to the sendmail program
Note: For the mail functions to be available, PHP requires an installed and working email system. The program to be
used is defined by the configuration settings in the php.ini file. Read more in our PHP Mail reference.
PHP Simple EMail
The simplest way to send an email with PHP is to send a text email.
In the example below we first declare the variables ($to, $subject, $message, $from, $headers), then we use the
variables in the mail() function to send an email:
<?php
$to = "[email protected]";
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "[email protected]";
$headers = "From: $from";
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
?>
PHP Mail Form
With PHP, you can create a feedbackform on your website. The example below sends a text message to a specified e
mail address:
<html>
<body>
<?php
if (isset($_REQUEST['email']))
//if "email" is filled out, send email
{
//send email
$email = $_REQUEST['email'] ;
$subject = $_REQUEST['subject'] ;
Runtime Configuration
The behavior of the mail functions is affected by settings in the php.ini file.
Mail configuration options:
Name Default Description Changeable
SMTP "localhost" Windows only: The DNS name or IP address of the PHP_INI_ALL
SMTP server
smtp_port "25" Windows only: The SMTP port number. Available PHP_INI_ALL
since PHP 4.3
sendmail_from NULL Windows only: Specifies the "from" address to be used PHP_INI_ALL
in email sent from PHP
sendmail_path NULL Unix systems only: Specifies where the sendmail PHP_INI_SYSTEM
program can be found (usually /usr/sbin/sendmail or
/usr/lib/sendmail)
PHP Mail Functions
PHP: indicates the earliest version of PHP that supports the function.
Function Description PHP
ezmlm_hash() Calculates the hash value needed by the EZMLM mailing list system 3
mail() Allows you to send emails directly from a script 3
PHP Mail Constants
none
PHP Secure Emails
« Previous Next Chapter »
There is a weakness in the PHP email script in the previous chapter.
PHP Email Injections
First, look at the PHP code from the previous chapter:
<html>
<body>
<?php
if (isset($_REQUEST['email']))
//if "email" is filled out, send email
{
//send email
$email = $_REQUEST['email'] ;
$subject = $_REQUEST['subject'] ;
$message = $_REQUEST['message'] ;
mail("[email protected]", "Subject: $subject",
$message, "From: $email" );
programmer using the PHP function trigger_error()
1024 E_USER_NOTICE Usergenerated notice. This is like an E_NOTICE set by the programmer using
the PHP function trigger_error()
4096 E_RECOVERABLE_ERROR Catchable fatal error. This is like an E_ERROR but can be caught by a user
defined handle (see also set_error_handler())
8191 E_ALL All errors and warnings, except level E_STRICT (E_STRICT will be part of
E_ALL as of PHP 6.0)
Now lets create a function to handle errors:
function customError($errno, $errstr)
{
echo "<b>Error:</b> [$errno] $errstr<br />";
echo "Ending Script";
die();
}
The code above is a simple error handling function. When it is triggered, it gets the error level and an error message. It then outputs
the error level and message and terminates the script.
Now that we have created an error handling function we need to decide when it should be triggered.
Set Error Handler
The default error handler for PHP is the built in error handler. We are going to make the function above the default error handler for
the duration of the script.
It is possible to change the error handler to apply for only some errors, that way the script can handle different errors in different
ways. However, in this example we are going to use our custom error handler for all errors:
set_error_handler("customError");
Since we want our custom function to handle all errors, the set_error_handler() only needed one parameter, a second parameter could
be added to specify an error level.
Example
Testing the error handler by trying to output variable that does not exist:
<?php
//error handler function
function customError($errno, $errstr)
{
echo "<b>Error:</b> [$errno] $errstr";
}
//set error handler
set_error_handler("customError");
//trigger error
echo($test);
?>
The output of the code above should be something like this:
Error: [8] Undefined variable: test
Trigger an Error
In a script where users can input data it is useful to trigger errors when an illegal input occurs. In PHP, this is done by the
trigger_error() function.
Example
In this example an error occurs if the "test" variable is bigger than "1":
43.
<?php
$test=2;
if ($test>1)
{
trigger_error("Value must be 1 or below");
}
?>
The output of the code above should be something like this:
Notice: Value must be 1 or below
in C:webfoldertest.php on line 6
An error can be triggered anywhere you wish in a script, and by adding a second parameter, you can specify what error level is
triggered.
Possible error types:
• E_USER_ERROR Fatal usergenerated runtime error. Errors that can not be recovered from. Execution of the script is
halted
• E_USER_WARNING Nonfatal usergenerated runtime warning. Execution of the script is not halted
• E_USER_NOTICE Default. Usergenerated runtime notice. The script found something that might be an error, but could
also happen when running a script normally
Example
In this example an E_USER_WARNING occurs if the "test" variable is bigger than "1". If an E_USER_WARNING occurs we will
use our custom error handler and end the script:
<?php
//error handler function
function customError($errno, $errstr)
{
echo "<b>Error:</b> [$errno] $errstr<br />";
echo "Ending Script";
die();
}
//set error handler
set_error_handler("customError",E_USER_WARNING);
//trigger error
$test=2;
if ($test>1)
{
trigger_error("Value must be 1 or below",E_USER_WARNING);
}
?>
The output of the code above should be something like this:
Error: [512] Value must be 1 or below
Ending Script
Now that we have learned to create our own errors and how to trigger them, lets take a look at error logging.
Error Logging
By default, PHP sends an error log to the servers logging system or a file, depending on how the error_log configuration is set in the
php.ini file. By using the error_log() function you can send error logs to a specified file or a remote destination.
Sending errors messages to yourself by email can be a good way of getting notified of specific errors.
Send an Error Message by EMail
In the example below we will send an email with an error message and end the script, if a specific error occurs:
<?php
//error handler function
Example explained:
The code above throws an exception and catches it:
1. The checkNum() function is created. It checks if a number is greater than 1. If it is, an exception is thrown
2. The checkNum() function is called in a "try" block
3. The exception within the checkNum() function is thrown
4. The "catch" block retrives the exception and creates an object ($e) containing the exception information
5. The error message from the exception is echoed by calling $e>getMessage() from the exception object
However, one way to get around the "every throw must have a catch" rule is to set a top level exception handler to handle errors that
slip through.
Creating a Custom Exception Class
Creating a custom exception handler is quite simple. We simply create a special class with functions that can be called when an
exception occurs in PHP. The class must be an extension of the exception class.
The custom exception class inherits the properties from PHP's exception class and you can add custom functions to it.
Lets create an exception class:
<?php
class customException extends Exception
{
public function errorMessage()
{
//error message
$errorMsg = 'Error on line '.$this>getLine().' in '.$this>getFile()
.': <b>'.$this>getMessage().'</b> is not a valid EMail address';
return $errorMsg;
}
}
$email = "[email protected]";
try
{
//check if
if(filter_var($email, FILTER_VALIDATE_EMAIL) === FALSE)
{
//throw exception if email is not valid
throw new customException($email);
}
}
catch (customException $e)
{
//display custom message
echo $e>errorMessage();
}
?>
The new class is a copy of the old exception class with an addition of the errorMessage() function. Since it is a copy of the old class,
and it inherits the properties and methods from the old class, we can use the exception class methods like getLine() and getFile() and
getMessage().
Example explained:
The code above throws an exception and catches it with a custom exception class:
1. The customException() class is created as an extension of the old exception class. This way it inherits all methods and
properties from the old exception class
2. The errorMessage() function is created. This function returns an error message if an email address is invalid
3. The $email variable is set to a string that is not a valid email address
4. The "try" block is executed and an exception is thrown since the email address is invalid
5. The "catch" block catches the exception and displays the error message
Functions and Filters
To filter a variable, use one of the following filter functions:
• filter_var() Filters a single variable with a specified filter
• filter_var_array() Filter several variables with the same or different filters
• filter_input Get one input variable and filter it
• filter_input_array Get several input variables and filter them with the same or different filters
In the example below, we validate an integer using the filter_var() function:
<?php
$int = 123;
if(!filter_var($int, FILTER_VALIDATE_INT))
{
echo("Integer is not valid");
}
else
{
echo("Integer is valid");
}
?>
The code above uses the "FILTER_VALIDATE_INT" filter to filter the variable. Since the integer is valid, the output of the code
above will be: "Integer is valid".
If we try with a variable that is not an integer (like "123abc"), the output will be: "Integer is not valid".
For a complete list of functions and filters, visit our PHP Filter Reference.
Validating and Sanitizing
There are two kinds of filters:
Validating filters:
• Are used to validate user input
• Strict format rules (like URL or EMail validating)
• Returns the expected type on success or FALSE on failure
Sanitizing filters:
• Are used to allow or disallow specified characters in a string
• No data format rules
• Always return the string
Options and Flags
Options and flags are used to add additional filtering options to the specified filters.
Different filters have different options and flags.
In the example below, we validate an integer using the filter_var() and the "min_range" and "max_range" options:
<?php
$var=300;
$int_options = array(
"options"=>array
(
"min_range"=>0,
"max_range"=>256
if(!filter_has_var(INPUT_POST, "url"))
{
echo("Input type does not exist");
}
else
{
$url = filter_input(INPUT_POST,
"url", FILTER_SANITIZE_URL);
}
?>
Example Explained
The example above has an input (url) sent to it using the "POST" method:
1. Check if the "url" input of the "POST" type exists
2. If the input variable exists, sanitize (take away invalid characters) and store it in the $url variable
If the input variable is a string like this "http://www.W3ååSchøøools.com/", the $url variable after the sanitizing will look like this:
http://www.W3Schools.com/
Filter Multiple Inputs
A form almost always consist of more than one input field. To avoid calling the filter_var or filter_input functions over and over, we
can use the filter_var_array or the filter_input_array functions.
In this example we use the filter_input_array() function to filter three GET variables. The received GET variables is a name, an age
and an email address:
<?php
$filters = array
(
"name" => array
(
"filter"=>FILTER_SANITIZE_STRING
),
"age" => array
(
"filter"=>FILTER_VALIDATE_INT,
"options"=>array
(
"min_range"=>1,
"max_range"=>120
)
),
"email"=> FILTER_VALIDATE_EMAIL,
);
$result = filter_input_array(INPUT_GET, $filters);
if (!$result["age"])
{
echo("Age must be a number between 1 and 120.<br />");
}
elseif(!$result["email"])
{
echo("EMail is not valid.<br />");
}
else
{
echo("User input is valid");
}
?>
53.
Example Explained
The example above has three inputs (name, age and email) sent to it using the "GET" method:
1. Set an array containing the name of input variables and the filters used on the specified input variables
2. Call the filter_input_array() function with the GET input variables and the array we just set
3. Check the "age" and "email" variables in the $result variable for invalid inputs. (If any of the input variables are invalid,
that input variable will be FALSE after the filter_input_array() function)
The second parameter of the filter_input_array() function can be an array or a single filter ID.
If the parameter is a single filter ID all values in the input array are filtered by the specified filter.
If the parameter is an array it must follow these rules:
• Must be an associative array containing an input variable as an array key (like the "age" input variable)
• The array value must be a filter ID or an array specifying the filter, flags and options
Using Filter Callback
It is possible to call a user defined function and use it as a filter using the FILTER_CALLBACK filter. This way, we have full control
of the data filtering.
You can create your own user defined function or use an existing PHP function
The function you wish to use to filter is specified the same way as an option is specified. In an associative array with the name
"options"
In the example below, we use a user created function to convert all "_" to whitespaces:
<?php
function convertSpace($string)
{
return str_replace("_", " ", $string);
}
$string = "Peter_is_a_great_guy!";
echo filter_var($string, FILTER_CALLBACK,
array("options"=>"convertSpace"));
?>
The result from the code above should look like this:
Peter is a great guy!
Example Explained
The example above converts all "_" to whitespaces:
1. Create a function to replace "_" to whitespaces
2. Call the filter_var() function with the FILTER_CALLBACK filter and an array containing our function
PHP Database
PHP MySQL Introduction
MySQL is the most popular opensource database system.
What is MySQL?
MySQL is a database.
The data in MySQL is stored in database objects called tables.
Create a Connection to a MySQL Database
Before you can access data in a database, you must create a connection to the database.
In PHP, this is done with the mysql_connect() function.
Syntax
mysql_connect(servername,username,password);
Parameter Description
servername Optional. Specifies the server to connect to. Default value is "localhost:3306"
username Optional. Specifies the username to log in with. Default value is the name of the user that owns the server
process
password Optional. Specifies the password to log in with. Default is ""
Note: There are more available parameters, but the ones listed above are the most important. Visit our full PHP MySQL Reference
for more details.
Example
In the following example we store the connection in a variable ($con) for later use in the script. The "die" part will be executed if the
connection fails:
<?php
$con = mysql_connect("localhost","peter","abc123");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
// some code
?>
Closing a Connection
The connection will be closed automatically when the script ends. To close the connection before, use the mysql_close() function:
<?php
$con = mysql_connect("localhost","peter","abc123");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
// some code
mysql_close($con);
?>
PHP MySQL Create Database and Tables
A database holds one or multiple tables.
Create a Database
The CREATE DATABASE statement is used to create a database in MySQL.
FirstName LastName Age
Peter Griffin 35
Glenn Quagmire 33
The following example updates some data in the "Persons" table:
<?php
$con = mysql_connect("localhost","peter","abc123");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("my_db", $con);
mysql_query("UPDATE Persons SET Age = '36'
WHERE FirstName = 'Peter' AND LastName = 'Griffin'");
mysql_close($con);
?>
After the update, the "Persons" table will look like this:
FirstName LastName Age
Peter Griffin 36
Glenn Quagmire 33
PHP MySQL Delete
The DELETE statement is used to delete records in a table.
Delete Data In a Database
The DELETE FROM statement is used to delete records from a database table.
Syntax
DELETE FROM table_name
WHERE some_column = some_value
Note: Notice the WHERE clause in the DELETE syntax. The WHERE clause specifies which record or records that should be
deleted. If you omit the WHERE clause, all records will be deleted!
To learn more about SQL, please visit our SQL tutorial.
To get PHP to execute the statement above we must use the mysql_query() function. This function is used to send a query or
command to a MySQL connection.
Example
Look at the following "Persons" table:
FirstName LastName Age
Peter Griffin 35
Glenn Quagmire 33
The following example deletes all the records in the "Persons" table where LastName='Griffin':
<?php
$con = mysql_connect("localhost","peter","abc123");
if (!$con)
{
64.
die('Could not connect: ' . mysql_error());
}
mysql_select_db("my_db", $con);
mysql_query("DELETE FROM Persons WHERE LastName='Griffin'");
mysql_close($con);
?>
After the deletion, the table will look like this:
FirstName LastName Age
Glenn Quagmire 33
PHP Database ODBC
ODBC is an Application Programming Interface (API) that allows you to connect to a data source (e.g. an MS Access database).
Create an ODBC Connection
With an ODBC connection, you can connect to any database, on any computer in your network, as long as an ODBC connection is
available.
Here is how to create an ODBC connection to a MS Access Database:
1. Open the Administrative Tools icon in your Control Panel.
2. Doubleclick on the Data Sources (ODBC) icon inside.
3. Choose the System DSN tab.
4. Click on Add in the System DSN tab.
5. Select the Microsoft Access Driver. Click Finish.
6. In the next screen, click Select to locate the database.
7. Give the database a Data Source Name (DSN).
8. Click OK.
Note that this configuration has to be done on the computer where your web site is located. If you are running Internet Information
Server (IIS) on your own computer, the instructions above will work, but if your web site is located on a remote server, you have to
have physical access to that server, or ask your web host to to set up a DSN for you to use.
Connecting to an ODBC
The odbc_connect() function is used to connect to an ODBC data source. The function takes four parameters: the data source name,
username, password, and an optional cursor type.
The odbc_exec() function is used to execute an SQL statement.
Example
The following example creates a connection to a DSN called northwind, with no username and no password. It then creates an SQL
and executes it:
$conn=odbc_connect('northwind','','');
$sql="SELECT * FROM customers";
$rs=odbc_exec($conn,$sql);
{
xml_parse($parser,$data,feof($fp)) or
die (sprintf("XML Error: %s at line %d",
xml_error_string(xml_get_error_code($parser)),
xml_get_current_line_number($parser)));
}
//Free the XML parser
xml_parser_free($parser);
?>
The output of the code above will be:
Note
To: Tove
From: Jani
Heading: Reminder
Message: Don't forget me this weekend!
How it works:
1. Initialize the XML parser with the xml_parser_create() function
2. Create functions to use with the different event handlers
3. Add the xml_set_element_handler() function to specify which function will be executed when the parser encounters the
opening and closing tags
4. Add the xml_set_character_data_handler() function to specify which function will execute when the parser encounters
character data
5. Parse the file "test.xml" with the xml_parse() function
6. In case of an error, add xml_error_string() function to convert an XML error to a textual description
7. Call the xml_parser_free() function to release the memory allocated with the xml_parser_create() function
More PHP Expat Parser
For more information about the PHP Expat functions, visit our PHP XML Parser Reference.
PHP XML DOM
The builtin DOM parser makes it possible to process XML documents in PHP.
What is DOM?
The W3C DOM provides a standard set of objects for HTML and XML documents, and a standard interface for accessing and
manipulating them.
The W3C DOM is separated into different parts (Core, XML, and HTML) and different levels (DOM Level 1/2/3):
* Core DOM defines a standard set of objects for any structured document
* XML DOM defines a standard set of objects for XML documents
* HTML DOM defines a standard set of objects for HTML documents
If you want to learn more about the XML DOM, please visit our XML DOM tutorial.
XML Parsing
To read and update create and manipulate an XML document, you will need an XML parser.
There are two basic types of XML parsers:
69.
• Treebased parser: This parser transforms an XML document into a tree structure. It analyzes the whole document, and
provides access to the tree elements
• Eventbased parser: Views an XML document as a series of events. When a specific event occurs, it calls a function to
handle it
The DOM parser is an treebased parser.
Look at the following XML document fraction:
<?xml version="1.0" encoding="ISO88591"?>
<from>Jani</from>
The XML DOM sees the XML above as a tree structure:
• Level 1: XML Document
• Level 2: Root element: <from>
• Level 3: Text element: "Jani"
Installation
The DOM XML parser functions are part of the PHP core. There is no installation needed to use these functions.
An XML File
The XML file below will be used in our example:
<?xml version="1.0" encoding="ISO88591"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
Load and Output XML
We want to initialize the XML parser, load the xml, and output it:
Example
<?php
$xmlDoc = new DOMDocument();
$xmlDoc>load("note.xml");
print $xmlDoc>saveXML();
?>
The output of the code above will be:
Tove Jani Reminder Don't forget me this weekend!
If you select "View source" in the browser window, you will see the following HTML:
<?xml version="1.0" encoding="ISO88591"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
The example above creates a DOMDocumentObject and loads the XML from "note.xml" into it.
• Extracting data from XML strings
• Editing text nodes or attributes
However, when dealing with advanced XML, like namespaces, you are better off using the Expat parser or the XML DOM.
Installation
As of PHP 5.0, the SimpleXML functions are part of the PHP core. There is no installation needed to use these functions.
Using SimpleXML
Below is an XML file:
<?xml version="1.0" encoding="ISO88591"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
We want to output the element names and data from the XML file above.
Here's what to do:
1. Load the XML file
2. Get the name of the first element
3. Create a loop that will trigger on each child node, using the children() function
4. Output the element name and data for each child node
Example
<?php
$xml = simplexml_load_file("test.xml");
echo $xml>getName() . "<br />";
foreach($xml>children() as $child)
{
echo $child>getName() . ": " . $child . "<br />";
}
?>
The output of the code above will be:
note
to: Tove
from: Jani
heading: Reminder
body: Don't forget me this weekend!
More PHP SimpleXML
For more information about the PHP SimpleXML functions, visit our PHP SimpleXML Reference.
PHP and AJAX
AJAX Introduction
AJAX is Based on Internet Standards
AJAX is based on internet standards, and uses a combination of:
• XMLHttpRequest object (to exchange data asynchronously with a server)
• JavaScript/DOM (to display/interact with the information)
• CSS (to style the data)
• XML (often used as the format for transferring data)
AJAX applications are browser and platformindependent!
Google Suggest
AJAX was made popular in 2005 by Google, with Google Suggest.
Google Suggest is using AJAX to create a very dynamic web interface: When you start typing in Google's search box, a JavaScript
sends the letters off to a server and the server returns a list of suggestions.
Start Using AJAX Today
In our PHP tutorial, we will demonstrate how AJAX can update parts of a web page, without reloading the whole page. The server
script will be written in PHP.
If you want to learn more about AJAX, visit our AJAX tutorial.
PHP AJAX and PHP
AJAX is used to create more interactive applications.
74.
AJAX PHP Example
The following example will demonstrate how a web page can communicate with a web server while a user type characters in an input
field:
Example
Start typing a name in the input field below:
First name:
þÿ
Suggestions:
Example Explained The HTML Page
When a user types a character in the input field above, the function "showHint()" is executed. The function is triggered by the
"onkeyup" event:
<html>
<head>
<script type="text/javascript">
function showHint(str)
{
if (str.length==0)
{
document.getElementById("txtHint").innerHTML="";
return;
}
var url="gethint.php";
url=url+"?q="+str;
url=url+"&sid="+Math.random();
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET",url,true);
xmlhttp.send();
}
</script>
</head
<body>
<p><b>Start typing a name in the input field below:</b></p>
<form>
First name: <input type="text" onkeyup="showHint(this.value)" size="20" />
</form>
<p>Suggestions: <span id="txtHint"></span></p>
75.
</body>
</html>
Source code explanation:
If the input field is empty (str.length==0), the function clears the content of the txtHint placeholder and exits the function.
If the input field is not empty, the showHint() function executes the following:
• Define the filename (to request from the server) in a variable called url
• Add a parameter (q) to the url variable, with the content of the input field
• Add a random number to the url variable, to avoid getting a cached file
• Create an XMLHttpRequest object
• Create the function to be executed when the server response is ready
• Send the request off to the server
The PHP File
The page on the server called by the JavaScript above is a PHP file called "gethint.php".
The source code in "gethint.php" checks an array of names, and returns the corresponding name(s) to the browser:
<?php
// Fill up array with names
$a[]="Anna";
$a[]="Brittany";
$a[]="Cinderella";
$a[]="Diana";
$a[]="Eva";
$a[]="Fiona";
$a[]="Gunda";
$a[]="Hege";
$a[]="Inga";
$a[]="Johanna";
$a[]="Kitty";
$a[]="Linda";
$a[]="Nina";
$a[]="Ophelia";
$a[]="Petunia";
$a[]="Amanda";
$a[]="Raquel";
$a[]="Cindy";
$a[]="Doris";
$a[]="Eve";
$a[]="Evita";
$a[]="Sunniva";
$a[]="Tove";
$a[]="Unni";
$a[]="Violet";
$a[]="Liza";
$a[]="Elizabeth";
$a[]="Ellen";
$a[]="Wenche";
$a[]="Vicky";
//get the q parameter from URL
$q=$_GET["q"];
//lookup all hints from array if length of q>0
if (strlen($q) > 0)
{
$hint="";
Example Explained The MySQL Database
The database table we use in the example above looks like this:
id FirstName LastName Age Hometown Job
1 Peter Griffin 41 Quahog Brewery
2 Lois Griffin 40 Newport Piano Teacher
3 Joseph Swanson 39 Quahog Police Officer
4 Glenn Quagmire 41 Quahog Pilot
Example Explained The HTML Page
When a user selects a user in the dropdown list above, a function called "showUser()" is executed. The function is triggered by the
"onchange" event:
<html>
<head>
<script type="text/javascript">
function showUser(str)
{
var url="getuser.php";
url=url+"?q="+str;
url=url+"&sid="+Math.random();
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET",url,true);
xmlhttp.send();
}
</script>
</head>
<body>
<form>
Select a User:
<select name="users" onchange="showUser(this.value)">
<option value="1">Peter Griffin</option>
<option value="2">Lois Griffin</option>
<option value="3">Glenn Quagmire</option>
<option value="4">Joseph Swanson</option>
</select>
</form>
<br />
<div id="txtHint"><b>Person info will be listed here.</b></div>
</body>
</html>
The showUser() function does the following:
• Define the filename (to request from the server) in a variable called url
78.
• Add a parameter (q) to the url variable, with the content of the dropdown list
• Add a random number to the url variable, to avoid getting a cached file
• Create an XMLHttpRequest object
• Create the function to be executed when the server response is ready
• Send the request off to the server
The PHP File
The page on the server called by the JavaScript above is a PHP file called "getuser.php".
The source code in "getuser.php" runs a query against a MySQL database, and returns the result in an HTML table:
<?php
$q=$_GET["q"];
$con = mysql_connect('localhost', 'peter', 'abc123');
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("ajax_demo", $con);
$sql="SELECT * FROM user WHERE id = '".$q."'";
$result = mysql_query($sql);
echo "<table border='1'>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
<th>Hometown</th>
<th>Job</th>
</tr>";
while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['FirstName'] . "</td>";
echo "<td>" . $row['LastName'] . "</td>";
echo "<td>" . $row['Age'] . "</td>";
echo "<td>" . $row['Hometown'] . "</td>";
echo "<td>" . $row['Job'] . "</td>";
echo "</tr>";
}
echo "</table>";
mysql_close($con);
?>
Explanation: When the query is sent from the JavaScript to the PHP file, the following happens:
1. PHP opens a connection to a MySQL server
2. The correct person is found
3. An HTML table is created, filled with data, and sent back to the "txtHint" placeholder
PHP Example AJAX and XML
AJAX can be used for interactive communication with an XML file.
79.
AJAX XML example
The following example will demonstrate how a web page can fetch information from an XML file with AJAX:
Example
þÿBob Dylan
Select a CD:
CD info will be listed here...
Example explained The HTML page
When a user selects a CD in the dropdown list above, a function called "showCD()" is executed. The function is triggered by the
"onchange" event:
<html>
<head>
<script type="text/javascript">
function showCD(str)
{
var url="getcd.php";
url=url+"?q="+str;
url=url+"&sid="+Math.random();
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET",url,true);
xmlhttp.send();
}
</script>
</head>
<body>
<form>
Select a CD:
<select name="cds" onchange="showCD(this.value)">
<option value="Bob Dylan">Bob Dylan</option>
<option value="Bonnie Tyler">Bonnie Tyler</option>
<option value="Dolly Parton">Dolly Parton</option>
</select>
</form>
<div id="txtHint"><b>CD info will be listed here...</b></div>
</body>
80.
</html>
The showCD() function does the following:
• Define the filename (to request from the server) in a variable called url
• Add a parameter (q) to the url variable, with the content of the dropdown list
• Add a random number to the url variable, to avoid getting a cached file
• Create an XMLHttpRequest object
• Create the function to be executed when the server response is ready
• Send the request off to the server
The PHP File
The page on the server called by the JavaScript above is a PHP file called "getcd.php".
The PHP script loads an XML document, "cd_catalog.xml", runs a query against the XML file, and returns the result as HTML:
<?php
$q=$_GET["q"];
$xmlDoc = new DOMDocument();
$xmlDoc>load("cd_catalog.xml");
$x=$xmlDoc>getElementsByTagName('ARTIST');
for ($i=0; $i<=$x>length1; $i++)
{
//Process only element nodes
if ($x>item($i)>nodeType==1)
{
if ($x>item($i)>childNodes>item(0)>nodeValue == $q)
{
$y=($x>item($i)>parentNode);
}
}
}
$cd=($y>childNodes);
for ($i=0;$i<$cd>length;$i++)
{
//Process only element nodes
if ($cd>item($i)>nodeType==1)
{
echo("<b>" . $cd>item($i)>nodeName . ":</b> ");
echo($cd>item($i)>childNodes>item(0)>nodeValue);
echo("<br />");
}
}
?>
When the CD query is sent from the JavaScript to the PHP page, the following happens:
1. PHP creates an XML DOM object
2. Find all <artist> elements that matches the name sent from the JavaScript
3. Output the album information (send to the "txtHint" placeholder)
PHP Example AJAX Live Search
AJAX can be used for a more userfriendly and interactive search.
81.
AJAX Live Search
In this example we will demonstrate a live search, where you get search results while you type.
Live search has many benefits compared to traditional searching:
• Results are shown as you type
• Results narrow as you continue typing
• If results become too narrow, remove characters to see a broader result
Search for a W3Schools page in the input field below:
þÿ
In the example above, the results are found in an XML document (links.xml). To make this example small and simple, only eight
results are available.
Example Explained The HTML page
The HTML page contains a link to an external JavaScript, some style definitions, an HTML form, and a div element:
<html>
<head>
<script type="text/javascript" src="livesearch.js"></script>
<style type="text/css">
#livesearch
{
margin:0px;
width:194px;
}
#txt1
{
margin:0px;
}
</style>
</head>
<body>
<form>
<input type="text" id="txt1" size="30" onkeyup="showResult(this.value)" />
<div id="livesearch"></div>
</form>
</body>
</html>
The HTML form works like this:
1. An event is triggered when the user presses, and releases a key in the input field
2. When the event is triggered, the function showResult() is executed
3. The <div id="livesearch"> is a placeholder for the data returned from the showResult() function
Example Explained The JavaScript code
This is the JavaScript code stored in the file "livesearch.js":
var xmlhttp;
function showResult(str)
{
if (str.length==0)
{
PHP Example AJAX RSS Reader
An RSS Reader is used to read RSS Feeds.
AJAX RSS Reader
In this example we will demonstrate an RSS reader, where the content from the RSS is loaded into a webpage without refreshing.
þÿGoogle News
Select an RSSfeed:
RSSfeed will be listed here...
Example Explained The HTML page
The HTML page contains a link to an external JavaScript, an HTML form, and a div element:
<html>
<head>
<script type="text/javascript" src="getrss.js"></script>
</head>
<body>
<form>
Select an RSSfeed:
<select onchange="showRSS(this.value)">
<option value="Google">Google News</option>
<option value="MSNBC">MSNBC News</option>
</select>
</form>
<p><div id="rssOutput">
<b>RSSfeed will be listed here...</b></div></p>
</body>
</html>
The HTML form works like this:
1. An event is triggered when a user selects an option in the dropdown box
2. When the event is triggered, the function showRSS() is executed
3. The <div id="rssOutput"> is a placeholder for the data returned from the showRSS() function
Example Explained The JavaScript code
This is the JavaScript code stored in the file "getrss.js":
var xmlhttp;
function showRSS(str)
{
xmlhttp=GetXmlHttpObject();
if (xmlhttp==null)
{
alert ("Your browser does not support XML HTTP Request");
return;
}
var url="getrss.php";
url=url+"?q="+str;
url=url+"&sid="+Math.random();
xmlhttp.onreadystatechange=stateChanged;
xmlhttp.open("GET",url,true);
</div>
</body>
</html>
The HTML form works like this:
1. An event is triggered when the user selects the "yes" or "no" option
2. When the event is triggered, the function getVote() is executed
3. The data returned from the getVote() function will replace the form, in the <div> tag
Example Explained The JavaScript code
This is the JavaScript code stored in the file "poll.js":
var xmlhttp;
function getVote(int)
{
xmlhttp=GetXmlHttpObject();
if (xmlhttp==null)
{
alert ("Browser does not support HTTP Request");
return;
}
var url="poll_vote.php";
url=url+"?vote="+int;
url=url+"&sid="+Math.random();
xmlhttp.onreadystatechange=stateChanged;
xmlhttp.open("GET",url,true);
xmlhttp.send(null);
}
function stateChanged()
{
if (xmlhttp.readyState==4)
{
document.getElementById("poll").innerHTML=xmlhttp.responseText;
}
}
function GetXmlHttpObject()
{
var objXMLHttp=null;
if (window.XMLHttpRequest)
{
objXMLHttp=new XMLHttpRequest();
}
else if (window.ActiveXObject)
{
objXMLHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
return objXMLHttp;
}
The stateChanged() and GetXmlHttpObject functions are the same as in the PHP AJAX Suggest chapter.
The getVote() Function
This function executes when "yes" or "no" is selected in the HTML form.
1. Calls the GetXmlHttpObject() function to create an XMLHTTP object
2. Defines the URL (filename) to send to the server
3. Adds a parameter (vote) to the URL with the content of the input field
4. Adds a random number to prevent the server from using a cached file
5. Each time the readyState property changes, the stateChanged() function will be executed
6. Opens the XMLHTTP object with the given url.
7. Sends an HTTP request to the server