PHP Tutorial PDF
PHP Tutorial PDF
PHP is a powerful server-side scripting language for creating dynamic and interactive websites. PHP is the widely-used, free, and efficient alternative to competitors such as Microsoft's ASP. PHP is perfectly suited for Web development and can be embedded directly into the HTML code. The PHP syntax is very similar to Perl and C. PHP is often used together with Apache (web server) on various operating systems. It also supports ISAPI and can be used with Microsoft's IIS on Windows.
Introduction to PHP
A PHP file may contain text, HTML tags and scripts. Scripts in a PHP file are executed on the server.
If you want to study these subjects first, find the tutorials on our Home page.
What is PHP?
PHP stands for PHP: Hypertext Preprocessor PHP is a server-side 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 (OSS) PHP is free to download and use
What is MySQL?
MySQL MySQL MySQL MySQL MySQL is a database server is ideal for both small and large applications supports standard SQL compiles on a number of platforms is free to download and use
PHP + MySQL
PHP combined with MySQL are cross-platform (means that you can develop in Windows and serve on a Unix platform)
Why PHP?
PHP PHP PHP PHP runs on different platforms (Windows, Linux, Unix, etc.) is compatible with almost all servers used today (Apache, IIS, etc.) is FREE to download from the official PHP resource: www.php.net is easy to learn and runs efficiently on the server side
Where to Start?
Install an Apache server on a Windows or Linux machine Install PHP on a Windows or Linux machine Install MySQL on a Windows or Linux machine
Download PHP
Download PHP for free here: http://www.php.net/downloads.php
PHP Syntax
You cannot view the PHP source code by selecting "View source" in the browser - you will only see the output from the PHP file, which is plain HTML. This is because the scripts are executed on the server before the result is sent back to the browser.
<?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:
Comments in PHP
In PHP, we use // to make a single-line comment or /* and */ to make a large comment block.
<html> <body> <?php //This is a comment /* This is a comment block */ ?> </body> </html>
PHP Variables
Variables are used for storing values, such as numbers, strings or function results, so that they can be used many times in a script.
Variables in PHP
Variables are used for storing a values, like text strings, numbers or arrays. When a variable is set it can be used over and over again in your script All variables in PHP start with a $ sign symbol. The correct way of setting a variable in PHP:
$var_name = value;
New PHP programmers often forget the $ sign at the beginning of the variable. In that case it will not work. Let's try creating a variable with a string, and a variable with a number:
PHP String
A string variable is used to store and manipulate a piece of text.
Strings in PHP
String variables are used for a value that contains character strings.
In this tutorial we are going to look at some of the most common functions and operators used to manipulate strings in PHP. After we create a string we can manipulate it. A string can be used directly in a function or it can be stored in a variable. Below, the PHP script assigns the string "Hello World" to a string variable called $txt:
Hello World
Now, lets try to use some different functions and operators to manipulate our string.
<?php $txt1="Hello World"; $txt2="1234"; echo $txt1 . " " . $txt2; ?>
The output of the code above will be:
12
The length of a string is often used in loops or other functions, when it is important to know when the string ends. (i.e. in a loop, we would want to stop the loop after the last character in the string)
6
As you see the position of the string "world" in our string is position 6. The reason that it is 6, and not 7, is that the first position in the string is 0, and not 1.
Installation
The string functions are part of the PHP core. There is no installation needed to use these functions.
Function addcslashes() addslashes() bin2hex() chop() chr() chunk_split() convert_cyr_string() convert_uudecode() convert_uuencode() count_chars() crc32() crypt() echo() explode() fprintf() get_html_translation_table() hebrev() hebrevc() html_entity_decode() htmlentities() htmlspecialchars_decode() htmlspecialchars() implode() join() levenshtein() localeconv() ltrim() md5() md5_file() metaphone() money_format() nl_langinfo() nl2br() number_format() ord() parse_str() print() printf() quoted_printable_decode() quotemeta() rtrim() setlocale() sha1() sha1_file() similar_text() soundex() sprintf() sscanf() str_ireplace()
Description Returns a string with backslashes in front of the specified characters Returns a string with backslashes in front of predefined characters Converts a string of ASCII characters to hexadecimal values Alias of rtrim() Returns a character from a specified ASCII value Splits a string into a series of smaller parts Converts a string from one Cyrillic character-set to another Decodes a uuencoded string Encodes a string using the uuencode algorithm Returns how many times an ASCII character occurs within a string and returns the information Calculates a 32-bit CRC for a string One-way string encryption (hashing) Outputs strings Breaks a string into an array Writes a formatted string to a specified output stream Returns the translation table used by htmlspecialchars() and htmlentities() Converts Hebrew text to visual text Converts Hebrew text to visual text and new lines (\n) into <br /> Converts HTML entities to characters Converts characters to HTML entities Converts some predefined HTML entities to characters Converts some predefined characters to HTML entities Returns a string from the elements of an array Alias of implode() Returns the Levenshtein distance between two strings Returns locale numeric and monetary formatting information Strips whitespace from the left side of a string Calculates the MD5 hash of a string Calculates the MD5 hash of a file Calculates the metaphone key of a string Returns a string formatted as a currency string Returns specific local information Inserts HTML line breaks in front of each newline in a string Formats a number with grouped thousands Returns the ASCII value of the first character of a string Parses a query string into variables Outputs a string Outputs a formatted string Decodes a quoted-printable string Quotes meta characters Strips whitespace from the right side of a string Sets locale information Calculates the SHA-1 hash of a string Calculates the SHA-1 hash of a file Calculates the similarity between two strings Calculates the soundex key of a string Writes a formatted string to a variable Parses input from a string according to a format Replaces some characters in a string (case-insensitive)
PHP 4 3 3 3 3 3 3 5 5 4 4 3 3 3 5 4 3 3 4 3 5 3 3 3 3 4 3 3 4 4 4 4 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 4 5
str_pad() str_repeat() str_replace() str_rot13() str_shuffle() str_split() str_word_count() strcasecmp() strchr() strcmp() strcoll() strcspn() strip_tags() stripcslashes() stripslashes() stripos() stristr() strlen() strnatcasecmp() strnatcmp() strncasecmp() strncmp() strpbrk() strpos() strrchr() strrev() strripos() strrpos() strspn() strstr() strtok() strtolower() strtoupper() strtr() substr() substr_compare() substr_count() substr_replace() trim() ucfirst() ucwords() vfprintf() vprintf()
Pads a string to a new length Repeats a string a specified number of times Replaces some characters in a string (case-sensitive) Performs the ROT13 encoding on a string Randomly shuffles all characters in a string Splits a string into an array Count the number of words in a string Compares two strings (case-insensitive) Finds the first occurrence of a string inside another string (alias of strstr()) Compares two strings (case-sensitive) Locale based string comparison Returns the number of characters found in a string before any part of some specified characters are found Strips HTML and PHP tags from a string Unquotes a string quoted with addcslashes() Unquotes a string quoted with addslashes() Returns the position of the first occurrence of a string inside another string (case-insensitive) Finds the first occurrence of a string inside another string (case-insensitive) Returns the length of a string Compares two strings using a "natural order" algorithm (case-insensitive) Compares two strings using a "natural order" algorithm (case-sensitive) String comparison of the first n characters (caseinsensitive) String comparison of the first n characters (casesensitive) Searches a string for any of a set of characters Returns the position of the first occurrence of a string inside another string (case-sensitive) Finds the last occurrence of a string inside another string Reverses a string Finds the position of the last occurrence of a string inside another string (case-insensitive) Finds the position of the last occurrence of a string inside another string (case-sensitive) Returns the number of characters found in a string that contains only characters from a specified charlist Finds the first occurrence of a string inside another string (case-sensitive) Splits a string into smaller strings Converts a string to lowercase letters Converts a string to uppercase letters Translates certain characters in a string Returns a part of a string Compares two strings from a specified start position (binary safe and optionally case-sensitive) Counts the number of times a substring occurs in a string Replaces a part of a string with another string Strips whitespace from both sides of a string Converts the first character of a string to uppercase Converts the first character of each word in a string to uppercase Writes a formatted string to a specified output stream Outputs a formatted string
4 4 3 4 4 5 4 3 3 3 4 3 3 4 3 5 3 3 4 4 4 4 5 3 3 3 5 3 3 3 3 3 3 3 3 5 4 4 3 3 3 5 4
vsprintf() wordwrap()
4 4
HTML_SPECIALCHARS HTML_ENTITIES ENT_COMPAT ENT_QUOTES ENT_NOQUOTES CHAR_MAX LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_ALL LC_MESSAGES STR_PAD_LEFT STR_PAD_RIGHT STR_PAD_BOTH
PHP Operators
Operators are used to operate on values.
PHP Operators
This section lists the different operators used in PHP. Arithmetic Operators Operator + * / Description Addition Subtraction Multiplication Division Example x=2 x+2 x=2 5-x x=4 x*5 15/5 Result 4 3 20 3
++ --
Increment Decrement
Assignment Operators Operator = += -= *= /= %= Example x=y x+=y x-=y x*=y x/=y x%=y Is The Same As x=y x=x+y x=x-y x=x*y x=x/y x=x%y
Comparison Operators Operator == != > < >= <= Description is equal to is not equal is greater than is less than is greater than or equal to is less than or equal to Example 5==8 returns false 5!=8 returns true 5>8 returns false 5<8 returns true 5>=8 returns false 5<=8 returns true
Logical Operators Operator && Description and Example x=6 y=3 (x < 10 && y > 1) returns true x=6 y=3 (x==5 || y==5) returns false x=6 y=3 !(x==y) returns true
||
or
not
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.
if...else statement - use this statement if you want to execute a set of code when a condition is true and another if the condition is not true elseif statement - is used with the if...else statement to execute a set of code if one of several condition are true
Syntax if (condition) code to be executed if condition is true; else code to be executed if condition is false; Example
The following example will output "Have a nice weekend!" if the current day is Friday, otherwise it will output "Have a nice day!":
<html> <body> <?php $d=date("D"); if ($d=="Fri") echo "Have a nice weekend!"; else echo "Have a nice day!"; ?> </body> </html>
If more than one line should be executed if a condition is true/false, the lines should be enclosed within curly braces:
<html> <body> <?php $d=date("D"); if ($d=="Fri") { echo "Hello!<br />"; echo "Have a nice weekend!"; echo "See you on Monday!"; } ?> </body> </html>
Syntax if (condition)
to be executed if condition is true; (condition) to be executed if condition is true; to be executed if condition is false;
The following example will output "Have a nice weekend!" if the current day is Friday, and "Have a nice Sunday!" if the current day is Sunday. Otherwise it will output "Have a nice day!":
<html> <body> <?php $d=date("D"); if ($d=="Fri") echo "Have a nice weekend!"; elseif ($d=="Sun") echo "Have a nice Sunday!"; else echo "Have a nice day!"; ?> </body> </html>
Syntax switch (expression) { case label1: code to be executed if expression = label1; break; case label2: code to be executed if expression = label2; break; default: code to be executed if expression is different from both label1 and label2; } Example
This is how it works:
The value of the expression is compared with the values for each case in the structure If there is a match, the code associated with that case is executed After a code is executed, break is used to stop the code from running into the next case The default statement is used if none of the cases are true
<html> <body> <?php switch ($x) { case 1: echo "Number 1"; break; case 2: echo "Number 2"; break; case 3: echo "Number 3"; break; default: echo "No number between 1 and 3"; } ?> </body> </html>
PHP Arrays
An array can store one or more values in a single variable name.
What is an array?
When working with PHP, sooner or later, you might want to create many similar variables. Instead of having many similar variables, you can store the data as elements in an array. Each element in the array has its own ID so that it can be easily accessed. There are three different kind of arrays:
Numeric array - An array with a numeric ID key Associative array - An array where each ID key is associated with a value Multidimensional array - An array containing one or more arrays
Numeric Arrays
A numeric array stores each element with a numeric ID key. There are different ways to create a numeric array.
Example 1
In this example the ID key is automatically assigned:
<?php $names[0] = "Peter"; $names[1] = "Quagmire"; $names[2] = "Joe"; echo $names[1] . " and " . $names[2] . " are ". $names[0] . "'s neighbors"; ?>
The code above will output:
Associative Arrays
An associative array, each ID key is associated with a value. When storing data about specific named values, a numerical array is not always the best way to do it. With associative arrays we can use the values as keys and assign values to them.
Example 1
In this example we use an array to assign ages to the different persons:
<?php $ages['Peter'] = "32"; $ages['Quagmire'] = "30"; $ages['Joe'] = "34"; echo "Peter is " . $ages['Peter'] . " years old."; ?>
Multidimensional Arrays
In a multidimensional array, each element in the main array can also be an array. And each element in the sub-array can be an array, and so on.
Example
In this example we create a multidimensional array, with automatically assigned ID keys:
$families = array ( "Griffin"=>array ( "Peter", "Lois", "Megan" ), "Quagmire"=>array ( "Glenn" ), "Brown"=>array ( "Cleveland", "Loretta", "Junior" ) );
The array above would look like this if written to the output:
Array ( [Griffin] => Array ( [0] => Peter [1] => Lois [2] => Megan ) [Quagmire] => Array ( [0] => Glenn ) [Brown] => Array ( [0] => Cleveland [1] => Loretta [2] => Junior ) ) Example 2
Lets try displaying a single value from the array above:
PHP Looping
Looping statements in PHP are used to execute the same block of code a specified number of times.
Looping
Very often when you write code, you want the same block of code to run a number of times. You can use looping statements in your code to perform this. In PHP we have the following looping statements:
while - loops through a block of code if and as long as a specified condition is true do...while - loops through a block of code once, and then repeats the loop as long as a special 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
<html> <body> <?php $i=1; while($i<=5) { echo "The number is " . $i . "<br />"; $i++; } ?> </body> </html>
<html> <body> <?php $i=0; do { $i++; echo "The number is " . $i . "<br />"; } while ($i<5); ?> </body> </html>
Example
The following example prints the text "Hello World!" five times:
<html> <body> <?php for ($i=1; $i<=5; $i++) { echo "Hello World!<br />"; }
<html> <body> <?php $arr=array("one", "two", "three"); foreach ($arr as $value) { echo "Value: " . $value . "<br />"; } ?> </body> </html>
PHP Functions
The real power of PHP comes from its functions. In PHP - there are more than 700 built-in functions available.
PHP Functions
In this tutorial we will show you how to create your own functions. For a reference and examples of the built-in functions, please visit our PHP Reference.
All functions start with the word "function()" Name the function - It should be possible to understand what the function does by its name. The name can start with a letter or underscore (not a number) Add a "{" - The function code starts after the opening curly brace Insert the function code Add a "}" - The function is finished by a closing curly brace
Example
A simple function that writes my name when it is called:
<html> <body> <?php function writeMyName() { echo "Kai Jim Refsnes"; } writeMyName(); ?> </body> </html>
<html> <body> <?php function writeMyName() { echo "Kai Jim Refsnes"; } echo "Hello world!<br />"; echo "My name is "; writeMyName(); echo ".<br />That's right, "; writeMyName(); echo " is my name."; ?> </body> </html>
The output of the code above will be:
Hello world! My name is Kai Jim Refsnes. That's right, Kai Jim Refsnes is my name.
You may have noticed the parentheses after the function name, like: writeMyName(). The parameters are specified inside the parentheses.
Example 1
The following example will write different first names, but the same last name:
<html> <body> <?php function writeMyName($fname) { echo $fname . " Refsnes.<br />"; } echo "My name is "; writeMyName("Kai Jim"); echo "My name is "; writeMyName("Hege"); echo "My name is "; writeMyName("Stale"); ?> </body> </html>
The output of the code above will be:
My name is Kai Jim Refsnes. My name is Hege Refsnes. My name is Stale Refsnes. Example 2
The following function has two parameters:
<html> <body> <?php function writeMyName($fname,$punctuation) { echo $fname . " Refsnes" . $punctuation . "<br />"; } echo "My name is "; writeMyName("Kai Jim","."); echo "My name is "; writeMyName("Hege","!"); echo "My name is "; writeMyName("Stle","..."); ?> </body> </html>
The output of the code above will be:
My name is Kai Jim Refsnes. My name is Hege Refsnes! My name is Stle Refsnes...
Example <html> <body> <?php function add($x,$y) { $total = $x + $y; return $total; } echo "1 + 16 = " . add(1,16) ?> </body> </html>
The output of the code above will be:
1 + 16 = 17
<html> <body> <form action="welcome.php" method="post"> Name: <input type="text" name="name" /> Age: <input type="text" name="age" /> <input type="submit" /> </form> </body> </html>
The example HTML page above contains two input fields and a submit button. When the user fills in this form and click on the submit button, the form data is sent to the "welcome.php" file. The "welcome.php" file looks like this:
<html> <body> Welcome <?php echo $_POST["name"]; ?>.<br /> You are <?php echo $_POST["age"]; ?> years old. </body> </html>
Form Validation
User input should be validated whenever possible. Client side validation is faster, and will reduce server load. However, any site that gets enough traffic to worry about server resources, may also need to worry about site security. You should always use server side validation if the form accesses a database. A good way to validate a form on the server is to post the form to itself, instead of jumping to a different page. The user will then get the error messages on the same page as the form. This makes it easier to discover the error.
PHP $_GET
The $_GET variable is used to collect values from a form with method="get".
Example <form action="welcome.php" method="get"> Name: <input type="text" name="name" /> Age: <input type="text" name="age" /> <input type="submit" /> </form>
When the user clicks the "Submit" button, the URL sent could look something like this:
http://www.w3schools.com/welcome.php?name=Peter&age=37
The "welcome.php" file can now use the $_GET variable to catch the form data (notice that the names of the form fields will automatically be the ID keys in the $_GET array):
Welcome <?php echo $_GET["name"]; ?>.<br /> You are <?php echo $_GET["age"]; ?> years old!
Example Welcome <?php echo $_REQUEST["name"]; ?>.<br /> You are <?php echo $_REQUEST["age"]; ?> years old!
PHP $_POST
The $_POST variable is used to collect values from a form with method="post".
Example <form action="welcome.php" method="post"> Enter your name: <input type="text" name="name" /> Enter your age: <input type="text" name="age" /> <input type="submit" /> </form>
When the user clicks the "Submit" button, the URL will not contain any form data, and will look something like this:
http://www.w3schools.com/welcome.php
The "welcome.php" file can now use the $_POST variable to catch the form data (notice that the names of the form fields will automatically be the ID keys in the $_POST array):
Welcome <?php echo $_POST["name"]; ?>.<br /> You are <?php echo $_POST["age"]; ?> years old!
However, because the variables are not displayed in the URL, it is not possible to bookmark the page.
Example Welcome <?php echo $_REQUEST["name"]; ?>.<br /> You are <?php echo $_REQUEST["age"]; ?> years old!
PHP Date()
The PHP date() function is used to format a time or a date.
Syntax date(format,timestamp)
Parameter format timestamp Description Required. Specifies the format of the timestamp Optional. Specifies a timestamp. Default is the current date and time (as a timestamp)
d - The day of the month (01-31) m - The current month, as a number (01-12) Y - The current year in four digits
An overview of all the letters 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"); echo "<br />"; echo date("Y.m.d"); echo "<br />"; echo date("Y-m-d"); ?>
The output of the code above could be something like this:
Syntax 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():
Tomorrow is 2006/07/12
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, like this:
<html> <body> <?php include("header.php"); ?> <h1>Welcome to my home page</h1> <p>Some text</p> </body> </html> Example 2
Now, let's assume we have a standard menu file that should be used on all pages (include files usually have a ".php" extension). Look at the "menu.php" file below:
<html> <body> <a href="http://www.w3schools.com/default.php">Home</a> | <a href="http://www.w3schools.com/about.php">About Us</a> | <a href="http://www.w3schools.com/contact.php">Contact Us</a>
The three files, "default.php", "about.php", and "contact.php" should all include the "menu.php" file. Here is the code in "default.php":
<?php include("menu.php"); ?> <h1>Welcome to my home page</h1> <p>Some text</p> </body> </html>
If you look at the source code of the "default.php" in a browser, it will look something like this:
<html> <body>
<a href="default.php">Home</a> | <a href="about.php">About Us</a> | <a href="contact.php">Contact Us</a> <h1>Welcome to my home page</h1> <p>Some text</p> </body> </html>
And, of course, we would have to do the same thing for "about.php" and "contact.php". By using include files, you simply have to update the text in the "menu.php" file if you decide to rename or change the order of the links or add another web page to the site.
<html> <body> <?php include("wrongFile.php"); echo "Hello World!"; ?> </body> </html>
Error message:
Warning: include(wrongFile.php) [function.include]: failed to open stream: No such file or directory in C:\home\website\test.php on line 5 Warning: include() [function.include]: Failed opening 'wrongFile.php' for inclusion (include_path='.;C:\php5\pear') in C:\home\website\test.php on line 5 Hello World!
Notice that the echo statement is still executed! This is because a Warning does not stop the script execution. Now, let's run the same example with the require() function. PHP code:
Warning: require(wrongFile.php) [function.require]: failed to open stream: No such file or directory in C:\home\website\test.php on line 5 Fatal error: require() [function.require]: Failed opening required 'wrongFile.php' (include_path='.;C:\php5\pear') in C:\home\website\test.php on line 5
The echo statement was not executed because the script execution stopped after the fatal error. It is recommended to use the require() function instead of include(), because scripts should not continue executing if files are missing or misnamed.
Opening a File
The fopen() function is used to open files in PHP. The first parameter of this function contains the name of the file to be opened and the second parameter specifies in which mode the file should be opened:
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:
Check End-of-file
The feof() function checks if the "end-of-file" (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!
Example
The example below reads a file line by line, until the end of file is reached:
<?php $file = fopen("welcome.txt", "r") or exit("Unable to open file!"); //Output a line of the file until the end is reached while(!feof($file)) { echo fgets($file). "<br />"; } fclose($file);
?>
Example
The example below reads a file character by character, until the end of file is reached:
<?php $file=fopen("welcome.txt","r") or exit("Unable to open file!"); while (!feof($file)) { echo fgetc($file); } fclose($file); ?>
Installation
The filesystem functions are part of the PHP core. There is no installation needed to use these functions.
Runtime Configuration
The behavior of the filesystem functions is affected by settings in php.ini. Filesystem configuration options: Name allow_url_fopen user_agent default_socket_timeout Default "1" NULL "60" Description Allows fopen()-type functions to work with URLs (available since PHP 4.0.4) Defines the user agent for PHP to send (available since PHP 4.3) Sets the default timeout, in seconds, for socket based streams (available since PHP 4.3) Defines the anonymous FTP password (your email address) When set to "1", PHP will examine the Changeable PHP_INI_SYSTEM PHP_INI_ALL PHP_INI_ALL
from
""
PHP_INI_ALL PHP_INI_ALL
auto_detect_line_endings "0"
data read by fgets() and file() to see if it is using Unix, MS-Dos or Mac lineending characters (available since PHP 4.3)
fscanf() fseek() fstat() ftell() ftruncate() fwrite() glob() is_dir() is_executable() is_file() is_link() is_readable() is_uploaded_file() is_writable() is_writeable() link() linkinfo() lstat() mkdir() move_uploaded_file() parse_ini_file() pathinfo() pclose() popen() readfile() readlink() realpath() rename() rewind() rmdir() set_file_buffer() stat() symlink() tempnam() tmpfile() touch() umask() unlink()
Parses input from an open file according to a specified format Seeks in an open file Returns information about an open file Returns the current position in an open file Truncates an open file to a specified length Writes to an open file Returns an array of filenames / directories matching a specified pattern Checks whether a file is a directory Checks whether a file is executable Checks whether a file is a regular file Checks whether a file is a link Checks whether a file is readable Checks whether a file was uploaded via HTTP POST Checks whether a file is writeable Alias of is_writable() Creates a hard link Returns information about a hard link Returns information about a file or symbolic link Creates a directory Moves an uploaded file to a new location Parses a configuration file Returns information about a file path Closes a pipe opened by popen() Opens a pipe Reads a file and writes it to the output buffer Returns the target of a symbolic link Returns the absolute pathname Renames a file or directory Rewinds a file pointer Removes an empty directory Sets the buffer size of an open file Returns information about a file Creates a symbolic link Creates a unique temporary file Creates a unique temporary file Sets access and modification time of a file Changes file permissions for files Deletes a file
4 3 4 3 4 3 4 3 3 3 3 3 3 4 3 3 3 3 3 4 4 4 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3
FILE_IGNORE_NEW_LINES FILE_SKIP_EMPTY_LINES
<html> <body> <form action="upload_file.php" method="post" enctype="multipart/form-data"> <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 content-type 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 browse-button next to the input field
Note: Allowing users to upload files is a big security risk. Only permit trusted users to perform file uploads.
<?php if ($_FILES["file"]["error"] > 0) { echo "Error: " . $_FILES["file"]["error"] . "<br />"; } else { echo "Upload: " . $_FILES["file"]["name"] . "<br />"; echo "Type: " . $_FILES["file"]["type"] . "<br />"; echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />"; echo "Stored in: " . $_FILES["file"]["tmp_name"]; } ?>
By using the global PHP $_FILES array you can upload files from a client computer to the remote server. The first parameter is the form's input name and the second index can be either "name", "type", "size", "tmp_name" or "error". Like this:
$_FILES["file"]["name"] - the name of the uploaded file $_FILES["file"]["type"] - the type of the uploaded file $_FILES["file"]["size"] - the size in bytes of the uploaded file $_FILES["file"]["tmp_name"] - the name of the temporary copy of the file stored on the server $_FILES["file"]["error"] - the error code resulting from the file upload
This is a very simple way of uploading files. For security reasons, you should add restrictions on what the user is allowed to upload.
Restrictions on Upload
In this script we add some restrictions to the file upload. The user may only upload .gif or .jpeg files and the file size must be under 20 kb:
<?php if ((($_FILES["file"]["type"] == "image/gif") || ($_FILES["file"]["type"] == "image/pjpeg")) && ($_FILES["file"]["size"] < 20000)) { if ($_FILES["file"]["error"] > 0) { echo "Error: " . $_FILES["file"]["error"] . "<br />"; } else { echo "Upload: " . $_FILES["file"]["name"] . "<br />"; echo "Type: " . $_FILES["file"]["type"] . "<br />"; echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />"; echo "Stored in: " . $_FILES["file"]["tmp_name"]; } } else { echo "Invalid file"; } ?>
if ($_FILES["file"]["error"] > 0) { echo "Return Code: " . $_FILES["file"]["error"] . "<br />"; } else { echo "Upload: " . $_FILES["file"]["name"] . "<br />"; echo "Type: " . $_FILES["file"]["type"] . "<br />"; echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />"; echo "Temp file: " . $_FILES["file"]["tmp_name"] . "<br />"; if (file_exists("upload/" . $_FILES["file"]["name"])) { echo $_FILES["file"]["name"] . " already exists. "; } else { move_uploaded_file($_FILES["file"]["tmp_name"], "upload/" . $_FILES["file"]["name"]); echo "Stored in: " . "upload/" . $_FILES["file"]["name"]; } } } else { echo "Invalid file"; } ?>
The script above checks if the file already exists, if it does not, it copies the file to the specified folder. Note: This example saves the file to a new folder called "upload"
PHP Cookies
A cookie is often used to identify a user.
What is a Cookie?
A cookie is often used to identify a user. A cookie is a small file that the server embeds on the user's computer. Each time the same computer requests a page with a browser, it will send the cookie too. With PHP, you can both create and retrieve cookie values.
<?php setcookie("user", "Alex Porter", time()+3600); ?> <html> <body> </body> </html>
Note: The value of the cookie is automatically URLencoded when sending the cookie, and automatically decoded when received (to prevent URLencoding, use setrawcookie() instead).
<?php // Print a cookie echo $_COOKIE["user"]; // A way to view all cookies print_r($_COOKIE); ?>
In the following example we use the isset() function to find out if a cookie has been set:
<html> <body> <?php if (isset($_COOKIE["user"])) echo "Welcome " . $_COOKIE["user"] . "!<br />"; else echo "Welcome guest!<br />"; ?> </body> </html>
<?php // set the expiration date to one hour ago setcookie("user", "", time()-3600); ?>
The form below passes the user input to "welcome.php" when the user clicks on the "Submit" button:
<html> <body> <form action="welcome.php" method="post"> Name: <input type="text" name="name" /> Age: <input type="text" name="age" /> <input type="submit" /> </form> </body> </html>
Retrieve the values in the "welcome.php" file like this:
<html> <body> Welcome <?php echo $_POST["name"]; ?>.<br /> You are <?php echo $_POST["age"]; ?> years old. </body> </html>
PHP Sessions
A PHP session variable is used to store information about, or change settings for a user session. Session variables hold information about one single user, and are available to all pages in one application.
The code above will register the user's session with the server, allow you to start saving user information, and assign a UID for that user's session.
<?php session_start(); // store session data $_SESSION['views']=1; ?> <html> <body> <?php //retrieve session data echo "Pageviews=". $_SESSION['views']; ?> </body> </html>
Output:
Pageviews=1
In the example below, we create a simple page-views counter. The isset() function checks if the "views" variable has already been set. If "views" has been set, we can increment our counter. If "views" doesn't exist, we create a "views" variable, and set it to 1:
<?php session_start(); if(isset($_SESSION['views'])) $_SESSION['views']=$_SESSION['views']+1; else $_SESSION['views']=1; echo "Views=". $_SESSION['views']; ?>
Destroying a Session
If you wish to delete some session data, you can use the unset() or the session_destroy() function. The unset() function is used to free the specified session variable:
<?php session_destroy();
?>
Note: session_destroy() will reset your session and you will lose all your stored session data.
mail(to,subject,message,headers,parameters)
Parameter to subject message headers parameters Description Required. Specifies the receiver / receivers of the email Required. Specifies the subject of the email. Note: This parameter cannot contain any newline characters Required. Defines the message to be sent. Each line should be separated with a LF (\n). Lines should not exceed 70 characters Optional. Specifies additional headers, like From, Cc, and Bcc. The additional headers should be separated with a CRLF (\r\n) 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 $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."; ?>
<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" ); echo "Thank you for using our mail form"; } else //if "email" is not filled out, display the form { echo "<form method='post' action='mailform.php'> Email: <input name='email' type='text' /><br /> Subject: <input name='subject' type='text' /><br /> Message:<br /> <textarea name='message' rows='15' cols='40'> </textarea><br /> <input type='submit' /> </form>"; } ?> </body> </html>
This is how the example above works:
First, check if the email input field is filled out If it is not set (like when the page is first visited); output the HTML form If it is set (after the form is filled out); send the email from the form When submit is pressed after the form is filled out, the page reloads, sees that the email input is set, and sends the email
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" ); echo "Thank you for using our mail form"; } else //if "email" is not filled out, display the form { echo "<form method='post' action='mailform.php'> Email: <input name='email' type='text' /><br /> Subject: <input name='subject' type='text' /><br /> Message:<br /> <textarea name='message' rows='15' cols='40'> </textarea><br /> <input type='submit' /> </form>"; } ?> </body> </html>
The problem with the code above is that unauthorized users can insert data into the mail headers via the input form. What happens if the user adds the following text to the email input field in the form?
<html> <body> <?php function spamcheck($field) { //eregi() performs a case insensitive regular expression match if(eregi("to:",$field) || eregi("cc:",$field)) { return TRUE; } else
{ return FALSE; } } //if "email" is filled out, send email if (isset($_REQUEST['email'])) { //check if the email address is invalid $mailcheck = spamcheck($_REQUEST['email']); if ($mailcheck==TRUE) { echo "Invalid input"; } else { //send email $email = $_REQUEST['email'] ; $subject = $_REQUEST['subject'] ; $message = $_REQUEST['message'] ; mail("[email protected]", "Subject: $subject", $message, "From: $email" ); echo "Thank you for using our mail form"; } } else //if "email" is not filled out, display the form { echo "<form method='post' action='mailform.php'> Email: <input name='email' type='text' /><br /> Subject: <input name='subject' type='text' /><br /> Message:<br /> <textarea name='message' rows='15' cols='40'> </textarea><br /> <input type='submit' /> </form>"; } ?> </body> </html>
Simple "die()" statements Custom errors and error triggers Error reporting
Warning: fopen(welcome.txt) [function.fopen]: failed to open stream: No such file or directory in C:\webfolder\test.php on line 2
To avoid that the user gets an error message like the one above, we test if the file exist before we try to access it:
Syntax
error_function(error_level,error_message, error_file,error_line,error_context)
Parameter error_level error_message Description Required. Specifies the error report level for the user-defined error. Must be a value number. See table below for possible error report levels Required. Specifies the error message for the user-defined error
Optional. Specifies the filename in which the error occurred Optional. Specifies the line number in which the error occurred Optional. Specifies an array containing every variable, and their values, in use when the error occurred
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("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:
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":
E_USER_ERROR - Fatal user-generated run-time error. Errors that can not be recovered from. Execution of the script is halted E_USER_WARNING - Non-fatal user-generated run-time warning. Execution of the script is not halted E_USER_NOTICE - Default. User-generated run-time 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:
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); } ?>
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 e-mail can be a good way of getting notified of specific errors.
<?php //error handler function function customError($errno, $errstr) { echo "<b>Error:</b> [$errno] $errstr<br />"; echo "Webmaster has been notified"; error_log("Error: [$errno] $errstr",1, "[email protected]","From: [email protected]"); } //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:
What is an Exception
With PHP 5 came a new object oriented way of dealing with errors. Exception handling is used to change the normal flow of the code execution if a specified error (exceptional) condition occurs. This condition is called an exception. This is what normally happens when an exception is triggered:
The current code state is saved The code execution will switch to a predefined (custom) exception handler function Depending on the situation, the handler may then resume the execution from the saved code state, terminate the script execution or continue the script from a different location in the code
Basic use of Exceptions Creating a custom exception handler Multiple exceptions Re-throwing an exception Setting a top level exception handler
Note: Exceptions should only be used with error conditions, and should not be used to jump to another place in the code at a specified point.
if($number>1) { throw new Exception("Value must be 1 or below"); } return true; } //trigger exception checkNum(2); ?>
The code above will get an error like this:
Uncaught exception 'Exception' 'Value must be 1 or below' in C:\webfolder\test.php:6 #0 C:\webfolder\test.php(12): #1 {main} thrown in C:\webfolder\test.php on line 6
<?php //create function with an exception function checkNum($number) { if($number>1) { throw new Exception("Value must be 1 or below"); } return true; } //trigger exception in a "try" block try { checkNum(2); //If the exception is thrown, this text will not be shown echo 'If you see this, the number is 1 or below'; } //catch exception catch(Exception $e) { echo 'Message: ' .$e->getMessage(); } ?>
Example explained:
The code above throws an exception and catches it: 1. 2. 3. 4. 5. The checkNum() function is created. It checks if a number is greater than 1. If it is, an exception is thrown The checkNum() function is called in a "try" block The exception within the checkNum() function is thrown The "catch" block retrives the exception and creates an object ($e) containing the exception information 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 errors that slip trough.
<?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 E-Mail 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. 2. 3. 4. 5. 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 The errorMessage() function is created. This function returns an error message if an email address is invalid The $email variable is set to a string that is not a valid e-mail address The "try" block is executed and an exception is thrown since the e-mail address is invalid The "catch" block catches the exception and displays the error message
Multiple Exceptions
It is possible for a script to use multiple exceptions to check for multiple conditions. It is possible to use several if..else blocks, a switch, or nest multiple exceptions. These exceptions can use different exception classes and return different error messages:
<?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 E-Mail 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); } //check for "example" in mail address if(strpos($email, "example") !== FALSE) { throw new Exception("$email is an example e-mail"); } } catch (customException $e) { echo $e->errorMessage(); } catch(Exception $e) { echo $e->getMessage(); }
?>
Example explained:
The code above tests two conditions and throws an exception if any of the conditions are not met: 1. 2. 3. 4. 5. 6. 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 The errorMessage() function is created. This function returns an error message if an email address is invalid The $email variable is set to a string that is a valid e-mail address, but contains the string "example" The "try" block is executed and an exception is not thrown on the first condition The second condition triggers an exception since the e-mail contains the string "example" The "catch" block catches the exception and displays the correct error message
If there was no customException catch, only the base exception catch, the exception would be handled there
Re-throwing Exceptions
Sometimes, when an exception is thrown, you may wish to handle it differently than the standard way. It is possible to throw an exception a second time within a "catch" block. A script should hide system errors from users. System errors may be important for the coder, but is of no intrest to the user. To make things easier for the user you can re-throw the exception with a user friendly message:
<?php class customException extends Exception { public function errorMessage() { //error message $errorMsg = $this->getMessage().' is not a valid E-Mail address.'; return $errorMsg; } } $email = "[email protected]"; try { try { //check for "example" in mail address if(strpos($email, "example") !== FALSE) { //throw exception if email is not valid throw new Exception($email); } } catch(Exception $e) { //re-throw exception throw new customException($email); } } catch (customException $e) { //display custom message echo $e->errorMessage();
} ?>
Example explained:
The code above tests if the email-address contains the string "example" in it, if it does, the exception is re-thrown: 1. 2. 3. 4. 5. 6. 7. 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 The errorMessage() function is created. This function returns an error message if an email address is invalid The $email variable is set to a string that is a valid e-mail address, but contains the string "example" The "try" block contains another "try" block to make it possible to re-throw the exception The exception is triggered since the e-mail contains the string "example" The "catch" block catches the exception and re-throws a "customException" The "customException" is caught and displays an error message
If the exception is not caught in it's current "try" block, it will search for a catch block on "higher levels".
<?php function myException($exception) { echo "<b>Exception:</b> " , $exception->getMessage(); } set_exception_handler('myException'); throw new Exception('Uncaught Exception occurred'); ?>
The output of the code above should be something like this:
PHP Filter
PHP filters is used to validate and filter data coming from insecure sources, like user input.
Input data from a form Cookies Web services data Server variables Database query results
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
<?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.
Are used to validate user input Strict format rules (like URL or E-Mail 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
<?php $var=300; $int_options = array( "options"=>array ( "min_range"=>0, "max_range"=>256 ) ); if(!filter_var($var, FILTER_VALIDATE_INT, $int_options)) { echo("Integer is not valid"); } else { echo("Integer is valid"); } ?>
Like the code above, options must be put in an associative array with the name "options". If a flag is used it does not need to be in an array.
Since the integer is "300" it is not in the specified range, and the output of the code above will be: "Integer is not valid". For a complete list of functions and filters, visit our PHP Filter Reference. Check each filter to see what options and flags are available.
Validate Input
Let's try validating input from a form. The first thing we need to do is to confirm that the input data we are looking for exists. Then we filter the input data using the filter_input() function. In the example below, the input variable "email" is sent to the PHP page:
<?php if(!filter_has_var(INPUT_GET, "email")) { echo("Input type does not exist"); } else { if (!filter_input(INPUT_GET, "email", FILTER_VALIDATE_EMAIL)) { echo "E-Mail is not valid"; } else { echo "E-Mail is valid"; } } ?>
Example Explained
The example above has an input (email) sent to it using the "GET" method: 1. 2. Check if an "email" input variable of the "GET" type exist If the input variable exists, check if it is a valid e-mail address
Sanitize Input
Let's try cleaning up an URL sent from a form. First we confirm that the input data we are looking for exists. Then we sanitize the input data using the filter_input() function. In the example below, the input variable "url" is sent to the PHP page:
Example Explained
The example above has an input (url) sent to it using the "POST" method: 1. 2. Check if the "url" input of the "POST" type exists 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.W3Schools.com/", the $url variable after the sanitizing will look like this:
http://www.W3Schools.com/
<?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("E-Mail is not valid.<br />"); } else {
Example Explained
The example above has three inputs (name, age and email) sent to it using the "GET" method: 1. 2. 3. Set an array containing the name of input variables and the filters used on the specified input variables Call the filter_input_array() function with the GET input variables and the array we just set 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 a 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
<?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:
Example Explained
The example above converts all "_" to whitespaces:
1. 2.
Create a function to replace "_" to whitespaces Call the filter_var() function with the FILTER_CALLBACK filter and an array containing our function
What is MySQL?
MySQL is a database. A database defines a structure for storing information. In a database, there are tables. Just like HTML tables, database tables contain rows, columns, and cells. Databases are useful when storing information categorically. A company may have a database with the following tables: "Employees", "Products", "Customers" and "Orders".
Database Tables
A database most often contains one or more tables. Each table has a name (e.g. "Customers" or "Orders"). Each table contains records (rows) with data. Below is an example of a table called "Persons": LastName Hansen Svendson Pettersen FirstName Ola Tove Kari Address Timoteivn 10 Borgvn 23 Storgt 20 City Sandnes Sandnes Stavanger
The table above contains three records (one for each person) and four columns (LastName, FirstName, Address, and City).
Queries
A query is a question or a request. With MySQL, we can query a database for specific information and have a recordset returned. Look at the following query:
Syntax mysql_connect(servername,username,password);
Parameter servername username password Description Optional. Specifies the server to connect to. Default value is "localhost:3306" Optional. Specifies the username to log in with. Default value is the name of the user that owns the server process 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 as soon as 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); ?>
Create a Database
The CREATE DATABASE statement is used to create a database in MySQL.
Example
In the following example we create a database called "my_db":
<?php $con = mysql_connect("localhost","peter","abc123"); if (!$con) { die('Could not connect: ' . mysql_error()); } if (mysql_query("CREATE DATABASE my_db",$con)) { echo "Database created"; } else { echo "Error creating database: " . mysql_error(); } mysql_close($con); ?>
Create a Table
The CREATE TABLE statement is used to create a database table in MySQL.
Syntax CREATE TABLE ( column_name1 column_name2 column_name3 ....... ) table_name data_type, data_type, data_type,
We must add the CREATE TABLE statement to the mysql_query() function to execute the command.
Example
The following example shows how you can create a table named "person", with three columns. The column names will be "FirstName", "LastName" and "Age":
<?php $con = mysql_connect("localhost","peter","abc123"); if (!$con) { die('Could not connect: ' . mysql_error()); } // Create database if (mysql_query("CREATE DATABASE my_db",$con)) { echo "Database created"; } else { echo "Error creating database: " . mysql_error(); } // Create table in my_db database mysql_select_db("my_db", $con); $sql = "CREATE TABLE person ( FirstName varchar(15), LastName varchar(15), Age int )"; mysql_query($sql,$con); mysql_close($con); ?>
Important: A database must be selected before a table can be created. The database is selected with the mysql_select_db() function. Note: When you create a database field of type varchar, you must specify the maximum length of the field, e.g. varchar(15).
Hold numbers with fractions. The maximum number of digits can be specified in the size parameter. The maximum number of digits to the right of the decimal is specified in the d parameter Description Holds a fixed length string (can contain letters, numbers, and special characters). The fixed size is specified in parenthesis Holds a variable length string (can contain letters, numbers, and special characters). The maximum size is specified in parenthesis Holds a variable string with a maximum length of 255 characters Holds a variable string with a maximum length of 65535 characters Holds a variable string with a maximum length of 16777215 characters Holds a variable string with a maximum length of 4294967295 characters Description Holds date and/or time
varchar(size)
tinytext text blob mediumtext mediumblob longtext longblob Date Data Types date(yyyy-mm-dd) datetime(yyyy-mm-dd hh:mm:ss) timestamp(yyyymmddhhmmss) time(hh:mm:ss) Misc. Data Types enum(value1,value2,ect)
set
Description ENUM is short for ENUMERATED list. Can store one of up to 65535 values listed within the ( ) brackets. If a value is inserted that is not in the list, a blank value will be inserted SET is similar to ENUM. However, SET can have up to 64 list items and can store more than one choice
Example $sql = "CREATE TABLE person ( personID int NOT NULL AUTO_INCREMENT, PRIMARY KEY(personID), FirstName varchar(15), LastName varchar(15),
Example
In the previous chapter we created a table named "Person", with three columns; "Firstname", "Lastname" and "Age". We will use the same table in this example. The following example adds two new records to the "Person" table:
<?php $con = mysql_connect("localhost","peter","abc123"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("my_db", $con); mysql_query("INSERT INTO person (FirstName, LastName, Age) VALUES ('Peter', 'Griffin', '35')"); mysql_query("INSERT INTO person (FirstName, LastName, Age) VALUES ('Glenn', 'Quagmire', '33')"); mysql_close($con); ?>
<html> <body>
<form action="insert.php" method="post"> Firstname: <input type="text" name="firstname" /> Lastname: <input type="text" name="lastname" /> Age: <input type="text" name="age" /> <input type="submit" /> </form> </body> </html>
When a user clicks the submit button in the HTML form in the example above, the form data is sent to "insert.php". The "insert.php" file connects to a database, and retrieves the values from the form with the PHP $_POST variables. Then, the mysql_query() function executes the INSERT INTO statement, and a new record will be added to the database table. Below is the code in the "insert.php" page:
<?php $con = mysql_connect("localhost","peter","abc123"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("my_db", $con); $sql="INSERT INTO person (FirstName, LastName, Age) VALUES ('$_POST[firstname]','$_POST[lastname]','$_POST[age]')"; if (!mysql_query($sql,$con)) { die('Error: ' . mysql_error()); } echo "1 record added"; mysql_close($con) ?>
Example
The following example selects all the data stored in the "Person" table (The * character selects all of the data in the table):
<?php $con = mysql_connect("localhost","peter","abc123"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("my_db", $con); $result = mysql_query("SELECT * FROM person"); while($row = mysql_fetch_array($result)) { echo $row['FirstName'] . " " . $row['LastName']; echo "<br />"; } mysql_close($con); ?>
The example above stores the data returned by the mysql_query() function in the $result variable. Next, we use the mysql_fetch_array() function to return the first row from the recordset as an array. Each subsequent call to mysql_fetch_array() returns the next row in the recordset. The while loop loops through all the records in the recordset. To print the value of each row, we use the PHP $row variable ($row['FirstName'] and $row['LastName']). The output of the code above will be:
<?php $con = mysql_connect("localhost","peter","abc123"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("my_db", $con); $result = mysql_query("SELECT * FROM person"); echo "<table border='1'> <tr> <th>Firstname</th> <th>Lastname</th> </tr>"; while($row = mysql_fetch_array($result)) { echo "<tr>"; echo "<td>" . $row['FirstName'] . "</td>"; echo "<td>" . $row['LastName'] . "</td>"; echo "</tr>"; }
Note: SQL statements are not case sensitive. WHERE is the same as where. 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
The following example will select all rows from the "Person" table, where FirstName='Peter':
<?php $con = mysql_connect("localhost","peter","abc123"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("my_db", $con);
$result = mysql_query("SELECT * FROM person WHERE FirstName='Peter'"); while($row = mysql_fetch_array($result)) { echo $row['FirstName'] . " " . $row['LastName']; echo "<br />"; } ?>
The output of the code above will be:
Peter Griffin
Example
The following example selects all the data stored in the "Person" table, and sorts the result by the "Age" column:
<?php $con = mysql_connect("localhost","peter","abc123"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("my_db", $con); $result = mysql_query("SELECT * FROM person ORDER BY age"); while($row = mysql_fetch_array($result)) { echo $row['FirstName']; echo " " . $row['LastName']; echo " " . $row['Age']; echo "<br />"; } mysql_close($con); ?>
Example
Earlier in the tutorial we created a table named "Person". Here is how it looks: FirstName Peter Glenn LastName Griffin Quagmire Age 35 33
<?php $con = mysql_connect("localhost","peter","abc123"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("my_db", $con); mysql_query("UPDATE Person SET Age = '36' WHERE FirstName = 'Peter' AND LastName = 'Griffin'"); mysql_close($con); ?>
After the update, the "Person" table will look like this: FirstName Peter Glenn LastName Griffin Quagmire Age 36 33
Syntax
<
Example
Earlier in the tutorial we created a table named "Person". Here is how it looks: FirstName Peter Glenn LastName Griffin Quagmire Age 35 33
The following example deletes all the records in the "Person" table where LastName='Griffin':
<?php $con = mysql_connect("localhost","peter","abc123"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("my_db", $con);
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:
Retrieving Records
The odbc_fetch_row() function is used to return records from the result-set. This function returns true if it is able to return rows, otherwise false. The function takes two parameters: the ODBC result identifier and an optional row number:
odbc_fetch_row($rs)
$compname=odbc_result($rs,1);
The code line below returns the value of a field called "CompanyName":
$compname=odbc_result($rs,"CompanyName");
odbc_close($conn);
An ODBC Example
The following example shows how to first create a database connection, then a result-set, and then display the data in an HTML table.
<html> <body> <?php $conn=odbc_connect('northwind','',''); if (!$conn) {exit("Connection Failed: " . $conn);} $sql="SELECT * FROM customers"; $rs=odbc_exec($conn,$sql); if (!$rs) {exit("Error in SQL");} echo "<table><tr>"; echo "<th>Companyname</th>"; echo "<th>Contactname</th></tr>"; while (odbc_fetch_row($rs)) { $compname=odbc_result($rs,"CompanyName"); $conname=odbc_result($rs,"ContactName"); echo "<tr><td>$compname</td>"; echo "<td>$conname</td></tr>"; }
What is XML?
XML is used to describe data and to focus on what data is. An XML file describes the structure of the data. In XML, no tags are predefined. You must define your own tags. If you want to learn more about XML, please visit our XML tutorial.
What is Expat?
To read and update - create and manipulate - an XML document, you will need an XML parser. There are two basic types of XML parsers:
Tree-based parser: This parser transforms an XML document into a tree structure. It analyzes the whole document, and provides access to the tree elements. e.g. the Document Object Model (DOM) Event-based parser: Views an XML document as a series of events. When a specific event occurs, it calls a function to handle it
The Expat parser is an event-based parser. Event-based parsers focus on the content of the XML documents, not their structure. Because of this, event-based parsers can access data faster than tree-based parsers. Look at the following XML fraction:
<from>Jani</from>
An event-based parser reports the XML above as a series of three events:
Start element: from Start CDATA section, value: Jani Close element: from
The XML example above contains well-formed XML. However, the example is not valid XML, because there is no Document Type Definition (DTD) associated with it. However, this makes no difference when using the Expat parser. Expat is a non-validating parser, and ignores any DTDs.
As an event-based, non-validating XML parser, Expat is fast and small, and a perfect match for PHP web applications. Note: XML documents must be well-formed or Expat will generate an error.
Installation
The XML Expat 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="ISO-8859-1"?> <note> <to>Tove</to> <from>Jani</from> <heading>Reminder</heading> <body>Don't forget me this weekend!</body> </note>
Example <?php //Initialize the XML parser $parser=xml_parser_create(); //Function to use at the start of an element function start($parser,$element_name,$element_attrs) { switch($element_name) { case "NOTE": echo "-- Note --<br />"; break; case "TO": echo "To: "; break; case "FROM": echo "From: "; break; case "HEADING": echo "Heading: "; break; case "BODY": echo "Message: "; } } //Function to use at the end of an element function stop($parser,$element_name) {
echo "<br />"; } //Function to use when finding character data function char($parser,$data) { echo $data; } //Specify element handler xml_set_element_handler($parser,"start","stop"); //Specify data handler xml_set_character_data_handler($parser,"char"); //Open XML file $fp=fopen("test.xml","r"); //Read data while ($data=fread($fp,4096)) { 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. 2. 3. 4. 5. 6. 7. Initialize the XML parser with the xml_parser_create() function Create functions to use with the different event handlers Add the xml_set_element_handler() function to specify which function will be executed when the parser encounters the opening and closing tags Add the xml_set_character_data_handler() function to specify which function will execute when the parser encounters character data Parse the file "test.xml" with the xml_parse() function In case of an error, add xml_error_string() function to convert an XML error to a textual description Call the xml_parser_free() function to release the memory allocated with the xml_parser_create() function
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:
Tree-based parser: This parser transforms an XML document into a tree structure. It analyzes the whole document, and provides access to the tree elements Event-based 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 tree-based parser. Look at the following XML document fraction:
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="ISO-8859-1"?> <note> <to>Tove</to> <from>Jani</from> <heading>Reminder</heading> <body>Don't forget me this weekend!</body>
</note>
<?xml version="1.0" encoding="ISO-8859-1"?> <note> <to>Tove</to> <from>Jani</from> <heading>Reminder</heading> <body>Don't forget me this weekend!</body> </note>
The example above creates a DOMDocument-Object and loads the XML from "note.xml" into it. Then the saveXML() function to puts the internal XML document into a string, so that we can print it.
Example <?php $xmlDoc = new DOMDocument(); $xmlDoc->load("note.xml"); $x = $xmlDoc->documentElement; foreach ($x->childNodes AS $item) { print $item->nodeName . " = " . $item->nodeValue . "<br />"; } ?>
The output of the code above will be:
from = Jani #text = heading = Reminder #text = body = Don't forget me this weekend! #text =
In the example above you see that there are empty text nodes between each element. When XML generates, it often contains white-spaces between the nodes. The XML DOM parser treats these as ordinary elements, and if you are not aware of them, they sometimes cause problems.
If you want to learn more about the XML DOM, please visit our XML DOM tutorial.
PHP SimpleXML
SimpleXML handles the most common XML tasks and leaves the rest for other extensions.
What is SimpleXML?
SimpleXML is new in PHP 5. It is an easy way of getting an element's attributes and text, if you know the XML document's layout. Compared to DOM or the Expat parser, SimpleXML just takes a few lines of code to read text data from an element. SimpleXML converts the XML document into an object, like this:
Elements - Are converted to single attributes of the SimpleXMLElement object. When there's more than one element on one level, they're placed inside an array Attributes - Are accessed using associative arrays, where an index corresponds to the attribute name Element Data - Text data from elements are converted to strings. If an element has more than one text node, they will be arranged in the order they are found
SimpleXML is fast and easy to use when performing basic tasks like:
Reading XML files 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="ISO-8859-1"?> <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. 2. 3. 4. Load the XML file Get the name of the first element Create a loop that will trigger on each child node, using the children() function 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!
AJAX Introduction
AJAX = Asynchronous JavaScript And XML
AJAX is an acronym for Asynchronous JavaScript And XML. AJAX is not a new programming language, but simply a new technique for creating better, faster, and more interactive web applications. AJAX uses JavaScript to send and receive data between a web browser and a web server.
The AJAX technique makes web pages more responsive by exchanging data with the web server behind the scenes, instead of reloading an entire web page each time a user makes a change.
The open standards used in AJAX are well defined, and supported by all major browsers. AJAX applications are browser and platform independent. (Cross-Platform, Cross-Browser technology)
they can reach a larger audience they are easier to install and support they are easier to develop
However, Internet applications are not always as "rich" and user-friendly as traditional desktop applications. With AJAX, Internet applications can be made richer (smaller, faster, and easier to use).
XML is commonly used as the format for receiving server data, although any format, including plain text, can be used. You will learn more about how this is done in the next chapters of this tutorial.
AJAX XMLHttpRequest
The XMLHttpRequest object makes AJAX possible.
The XMLHttpRequest
The XMLHttpRequest object is the key to AJAX. It has been available ever since Internet Explorer 5.5 was released in July 2000, but not fully discovered before people started to talk about AJAX and Web 2.0 in 2005.
1. 2. 3. 4. 5.
First create a variable XMLHttp to use as your XMLHttpRequest object. Set the value to null. Then test if the object window.XMLHttpRequest is available. This object is available in newer versions of Firefox, Mozilla, Opera, and Safari. If it's available, use it to create a new object: XMLHttp=new XMLHttpRequest() If it's not available, test if an object window.ActiveXObject is available. This object is available in Internet Explorer version 5.5 and later. If it is available, use it to create a new object: XMLHttp=new ActiveXObject()
A Better Example?
Some programmers will prefer to use the newest and fastest version of the XMLHttpRequest object. The example below tries to load Microsoft's latest version "Msxml2.XMLHTTP", available in Internet Explorer 6, before it falls back to "Microsoft.XMLHTTP", available in Internet Explorer 5.5 and later.
function GetXmlHttpObject() { var xmlHttp=null; try { // Firefox, Opera 8.0+, Safari xmlHttp=new XMLHttpRequest(); } catch (e) { // Internet Explorer try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); } } return xmlHttp; }
Example above explained: 1. 2. 3. 4. First create a variable XMLHttp to use as your XMLHttpRequest object. Set the value to null. Try to create the object the according to web standards (Mozilla, Opera and Safari):XMLHttp=new XMLHttpRequest() Try to create the object the Microsoft way, available in Internet Explorer 6 and later:XMLHttp=new ActiveXObject("Msxml2.XMLHTTP") If this catches an error, try the older (Internet Explorer 5.5) way: XMLHttp=new ActiveXObject("Microsoft.XMLHTTP")
AJAX Suggest
In the AJAX example below we will demonstrate how a web page can communicate with a web server online as a user enters data into a web form.
<html> <head> <script src="clienthint.js"></script> </head> <body> <form> First Name: <input type="text" id="txt1" onkeyup="showHint(this.value)"> </form> <p>Suggestions: <span id="txtHint"></span></p> </body> </html>
The JavaScript
The JavaScript code is stored in "clienthint.js" and linked to the HTML document:
var xmlHttp
function showHint(str) { if (str.length==0) { document.getElementById("txtHint").innerHTML="" return } xmlHttp=GetXmlHttpObject() if (xmlHttp==null) { alert ("Browser does not support HTTP Request") return } var url="gethint.php" url=url+"?q="+str url=url+"&sid="+Math.random() xmlHttp.onreadystatechange=stateChanged xmlHttp.open("GET",url,true) xmlHttp.send(null) } function stateChanged() { if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") { document.getElementById("txtHint").innerHTML=xmlHttp.responseText } } function GetXmlHttpObject() { var xmlHttp=null; try { // Firefox, Opera 8.0+, Safari xmlHttp=new XMLHttpRequest(); } catch (e) { // Internet Explorer try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); } } return xmlHttp; }
Example Explained
The showHint() Function This function executes every time a character is entered in the input field. If there is some input in the text field (str.length > 0) the function executes the following: 1. 2. 3. Defines the url (filename) to send to the server Adds a parameter (q) to the url with the content of the input field Adds a random number to prevent the server from using a cached file
4. 5. 6.
Calls on the GetXmlHttpObject function to create an XMLHTTP object, and tells the object to execute a function called stateChanged when a change is triggered Opens the XMLHTTP object with the given url. Sends an HTTP request to the server
If the input field is empty, the function simply clears the content of the txtHint placeholder. The stateChanged() Function This function executes every time the state of the XMLHTTP object changes. When the state changes to 4 (or to "complete"), the content of the txtHint placeholder is filled with the response text. The GetXmlHttpObject() Function AJAX applications can only run in web browsers with complete XML support. The code above called a function called GetXmlHttpObject(). The purpose of the function is to solve the problem of creating different XMLHTTP objects for different browsers. This is explained in the previous chapter.
<?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=""; for($i=0; $i<count($a); $i++) { if (strtolower($q)==strtolower(substr($a[$i],0,strlen($q)))) { if ($hint=="") { $hint=$a[$i]; } else { $hint=$hint." , ".$a[$i]; } } } } //Set output to "no suggestion" if no hint were found //or to the correct values if ($hint == "") { $response="no suggestion"; } else { $response=$hint; } //output the response echo $response; ?>
If there is any text sent from the JavaScript (strlen($q) > 0) the following happens: 1. 2. 3. 4. 5. Find a name matching the characters sent from the JavaScript If more than one name is found, include all names in the response string If no matching names were found, set response to "no suggestion" If one or more matching names were found, set response to these names The response is sent to the "txtHint" placeholder
<html> <head> <script src="selectcd.js"></script> </head> <body> <form> Select a CD: <select name="cds" onchange="showCD(this.value)"> <option value="Bob Dylan">Bob Dylan</option> <option value="Bee Gees">Bee Gees</option> <option value="Cat Stevens">Cat Stevens</option> </select> </form> <p> <div id="txtHint"><b>CD info will be listed here.</b></div> </p> </body> </html>
Example Explained
As you can see it is just a simple HTML form with a simple drop down box called "cds". The paragraph below the form contains a div called "txtHint". The div is used as a placeholder for info retrieved from the web server. When the user selects data, a function called "showCD" is executed. The execution of the function is triggered by the "onchange" event. In other words: Each time the user changes the value in the drop down box, the function showCD is called.
The JavaScript
This is the JavaScript code stored in the file "selectcd.js":
var xmlHttp function showCD(str) { xmlHttp=GetXmlHttpObject() if (xmlHttp==null) { alert ("Browser does not support HTTP Request") return } var url="getcd.php" url=url+"?q="+str url=url+"&sid="+Math.random() xmlHttp.onreadystatechange=stateChanged xmlHttp.open("GET",url,true) xmlHttp.send(null) } function stateChanged() { if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") { document.getElementById("txtHint").innerHTML=xmlHttp.responseText } } function GetXmlHttpObject() { var xmlHttp=null; try { // Firefox, Opera 8.0+, Safari xmlHttp=new XMLHttpRequest(); } catch (e) { // Internet Explorer try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); } } return xmlHttp; }
Example Explained
The stateChanged() and GetXmlHttpObject functions are the same as in the last chapter, you can go to the previous page for an explanation of those The showCD() Function If an item in the drop down box is selected the function executes the following: 1. Calls on the GetXmlHttpObject function to create an XMLHTTP object
2. 3. 4. 5. 6. 7.
Defines the url (filename) to send to the server Adds a parameter (q) to the url with the content of the input field Adds a random number to prevent the server from using a cached file Call stateChanged when a change is triggered Opens the XMLHTTP object with the given url. Sends an HTTP request to the server
<?php $q=$_GET["q"]; $xmlDoc = new DOMDocument(); $xmlDoc->load("cd_catalog.xml"); $x=$xmlDoc->getElementsByTagName('ARTIST'); for ($i=0; $i<=$x->length-1; $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($cd->item($i)->nodeName); echo(": "); echo($cd->item($i)->childNodes->item(0)->nodeValue); echo("<br />"); } } ?>
Example Explained
When the query is sent from the JavaScript to the PHP page the following happens: 1. 2. 3. 4. PHP creates an XML DOM object of the "cd_catalog.xml" file All "artist" elements (nodetypes = 1) are looped through to find a name matching the one sent from the JavaScript. The CD containing the correct artist is found The album information is output and sent to the "txtHint" placeholder
User info will be listed here. This example consists of four elements:
a a a a
The Database
The database we will be using in this example looks like this: id 1 2 3 4 Lois Joseph Glenn FirstName Peter LastName Griffin Griffin Swanson Quagmire Age 41 40 39 41 Hometown Quahog Newport Quahog Quahog Brewery Piano Teacher Police Officer Pilot Job
<html> <head> <script src="selectuser.js"></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> <p> <div id="txtHint"><b>User info will be listed here.</b></div> </p> </body> </html>
The JavaScript
This is the JavaScript code stored in the file "selectuser.js":
var xmlHttp function showUser(str) { xmlHttp=GetXmlHttpObject() if (xmlHttp==null) { alert ("Browser does not support HTTP Request") return } var url="getuser.php" url=url+"?q="+str url=url+"&sid="+Math.random() xmlHttp.onreadystatechange=stateChanged xmlHttp.open("GET",url,true) xmlHttp.send(null) } function stateChanged() { if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") { document.getElementById("txtHint").innerHTML=xmlHttp.responseText } } function GetXmlHttpObject() { var xmlHttp=null; try { // Firefox, Opera 8.0+, Safari xmlHttp=new XMLHttpRequest(); } catch (e) { //Internet Explorer try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); }
} return xmlHttp; }
Example Explained
The stateChanged() and GetXmlHttpObject functions are the same as in the PHP AJAX Suggest chapter, you can go to there for an explanation of those. The showUser() Function If an item in the drop down box is selected the function executes the following: 1. 2. 3. 4. 5. 6. 7. Calls on the GetXmlHttpObject function to create an XMLHTTP object Defines the url (filename) to send to the server Adds a parameter (q) to the url with the content of the dropdown box Adds a random number to prevent the server from using a cached file Call stateChanged when a change is triggered Opens the XMLHTTP object with the given url. Sends an HTTP request to the server
<?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); ?>
Example Explained
When the query is sent from the JavaScript to the PHP page the following happens: 1. 2. 3. PHP opens a connection to a MySQL server The "user" with the specified name is found A table is created and the data is inserted and sent to the "txtHint" placeholder
a a a a
The Database
The database we will be using in this example looks like this: id 1 2 3 4 Lois Joseph Glenn FirstName Peter LastName Griffin Griffin Swanson Quagmire Age 41 40 39 41 Hometown Quahog Newport Quahog Quahog Brewery Piano Teacher Police Officer Pilot Job
<html> <head> <script src="responsexml.js"></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> <h2><span id="firstname"></span> <span id="lastname"></span></h2> <span id="job"></span> <div style="text-align: right"> <span id="age_text"></span> <span id="age"></span> <span id="hometown_text"></span> <span id="hometown"></span> </div> </body> </html>
In other words: Each time the user changes the value in the drop down box, the function showUser() is called and outputs the result in the specified <span> elements.
The JavaScript
This is the JavaScript code stored in the file "responsexml.js":
var xmlHttp function showUser(str) { xmlHttp=GetXmlHttpObject() if (xmlHttp==null) { alert ("Browser does not support HTTP Request") return } var url="responsexml.php" url=url+"?q="+str url=url+"&sid="+Math.random() xmlHttp.onreadystatechange=stateChanged xmlHttp.open("GET",url,true) xmlHttp.send(null) } function stateChanged() { if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") { xmlDoc=xmlHttp.responseXML; document.getElementById("firstname").innerHTML= xmlDoc.getElementsByTagName("firstname")[0].childNodes[0].nodeValue; document.getElementById("lastname").innerHTML= xmlDoc.getElementsByTagName("lastname")[0].childNodes[0].nodeValue; document.getElementById("job").innerHTML= xmlDoc.getElementsByTagName("job")[0].childNodes[0].nodeValue; document.getElementById("age_text").innerHTML="Age: "; document.getElementById("age").innerHTML= xmlDoc.getElementsByTagName("age")[0].childNodes[0].nodeValue; document.getElementById("hometown_text").innerHTML="<br/>From: "; document.getElementById("hometown").innerHTML= xmlDoc.getElementsByTagName("hometown")[0].childNodes[0].nodeValue; } } function GetXmlHttpObject() { var objXMLHttp=null if (window.XMLHttpRequest) { objXMLHttp=new XMLHttpRequest() } else if (window.ActiveXObject) { objXMLHttp=new ActiveXObject("Microsoft.XMLHTTP") } return objXMLHttp }
Example Explained
The showUser() and GetXmlHttpObject functions are the same as in the PHP AJAX Database chapter, you can go to there for an explanation of those. The stateChanged() Function If an item in the drop down box is selected the function executes the following: 1. 2. Defines the "xmlDoc" variable as an xml document using the responseXML function Retrieves data from the xml documents and places them in the correct <span> elements
<?php header('Content-Type: text/xml'); header("Cache-Control: no-cache, must-revalidate"); //A date in the past header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); $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 '<?xml version="1.0" encoding="ISO-8859-1"?> <person>'; while($row = mysql_fetch_array($result)) { echo "<firstname>" . $row['FirstName'] . "</firstname>"; echo "<lastname>" . $row['LastName'] . "</lastname>"; echo "<age>" . $row['Age'] . "</age>"; echo "<hometown>" . $row['Hometown'] . "</hometown>"; echo "<job>" . $row['Job'] . "</job>"; } echo "</person>"; mysql_close($con); ?>
Example Explained
When the query is sent from the JavaScript to the PHP page the following happens: 1. 2. 3. 4. 5. 6. The content-type of the PHP document is set to be "text/xml" The PHP document is set to "no-cache" to prevent caching The $q variable is set to be the data sent from the html page PHP opens a connection to a MySQL server The "user" with the specified id is found The data is outputted as an xml document
Matching results are shown as you type Results narrow as you continue typing If results become too narrow, remove characters to see a broader result
In this example the results are found in an XML document (links.xml). To make this example small and simple, only eight results are available.
<html> <head> <script 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>
3.
Below the form is a <div> called "livesearch". This is used as a placeholder for the return data of the showResult() function.
The JavaScript
The JavaScript code is stored in "livesearch.js" and linked to the HTML document:
var xmlHttp function showResult(str) { if (str.length==0) { document.getElementById("livesearch"). innerHTML=""; document.getElementById("livesearch"). style.border="0px"; return } xmlHttp=GetXmlHttpObject() if (xmlHttp==null) { alert ("Browser does not support HTTP Request") return } var url="livesearch.php" url=url+"?q="+str url=url+"&sid="+Math.random() xmlHttp.onreadystatechange=stateChanged xmlHttp.open("GET",url,true) xmlHttp.send(null) } function stateChanged() { if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") { document.getElementById("livesearch"). innerHTML=xmlHttp.responseText; document.getElementById("livesearch"). style.border="1px solid #A5ACB2"; } } function GetXmlHttpObject() { var xmlHttp=null; try { // Firefox, Opera 8.0+, Safari xmlHttp=new XMLHttpRequest(); } catch (e) { // Internet Explorer try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); }
} return xmlHttp; }
Example Explained
The GetXmlHttpObject function is the same as in the PHP AJAX Suggest chapter. The showResult() Function This function executes every time a character is entered in the input field. If there is no input in the text field (str.length == 0) the function sets the return field to empty and removes any border around it. However, if there is any input in the text field the function executes the following: 1. 2. 3. 4. 5. 6. Defines the url (filename) to send to the server Adds a parameter (q) to the url with the content of the input field Adds a random number to prevent the server from using a cached file Calls on the GetXmlHttpObject function to create an XMLHTTP object, and tells the object to execute a function called stateChanged when a change is triggered Opens the XMLHTTP object with the given url. Sends an HTTP request to the server
The stateChanged() Function This function executes every time the state of the XMLHTTP object changes. When the state changes to 4 (or to "complete"), the content of the txtHint placeholder is filled with the response text, and a border is set around the return field.
<?php $xmlDoc = new DOMDocument(); $xmlDoc->load("links.xml"); $x=$xmlDoc->getElementsByTagName('link'); //get the q parameter from URL $q=$_GET["q"]; //lookup all links from the xml file if length of q>0 if (strlen($q) > 0) { $hint=""; for($i=0; $i<($x->length); $i++) { $y=$x->item($i)->getElementsByTagName('title'); $z=$x->item($i)->getElementsByTagName('url'); if ($y->item(0)->nodeType==1)
{ //find a link matching the search text if (stristr($y->item(0)->childNodes->item(0)->nodeValue,$q)) { if ($hint=="") { $hint="<a href='" . $z->item(0)->childNodes->item(0)->nodeValue . "' target='_blank'>" . $y->item(0)->childNodes->item(0)->nodeValue . "</a>"; } else { $hint=$hint . "<br /><a href='" . $z->item(0)->childNodes->item(0)->nodeValue . "' target='_blank'>" . $y->item(0)->childNodes->item(0)->nodeValue . "</a>"; } } } } } // Set output to "no suggestion" if no hint were found // or to the correct values if ($hint == "") { $response="no suggestion"; } else { $response=$hint; } //output the response echo $response; ?>
If there is any text sent from the JavaScript (strlen($q) > 0) the following happens: 1. 2. 3. 4. 5. PHP creates an XML DOM object of the "links.xml" file All "title" elements (nodetypes = 1) are looped through to find a name matching the one sent from the JavaScript The link containing the correct title is found and set as the "$response" variable. If more than one match is found, all matches are added to the variable If no matches are found the $response variable is set to "no suggestion" The $result variable is output and sent to the "livesearch" placeholder
<html> <head> <script type="text/javascript" src="getrss.js"></script> </head> <body> <form> Select an RSS-Feed: <select onchange="showRSS(this.value)"> <option value="Google">Google News</option> <option value="MSNBC">MSNBC News</option> </select> </form> <p><div id="rssOutput"> <b>RSS Feed will be listed here.</b></div></p> </body> </html>
The JavaScript
The JavaScript code is stored in "getrss.js" and linked to the HTML document:
var xmlHttp function showRSS(str) { xmlHttp=GetXmlHttpObject() if (xmlHttp==null) { alert ("Browser does not support HTTP Request") return
} var url="getrss.php" url=url+"?q="+str url=url+"&sid="+Math.random() xmlHttp.onreadystatechange=stateChanged xmlHttp.open("GET",url,true) xmlHttp.send(null) } function stateChanged() { if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") { document.getElementById("rssOutput") .innerHTML=xmlHttp.responseText } } function GetXmlHttpObject() { var xmlHttp=null; try { // Firefox, Opera 8.0+, Safari xmlHttp=new XMLHttpRequest(); } catch (e) { // Internet Explorer try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); } } return xmlHttp; }
Example Explained
The stateChanged() and GetXmlHttpObject functions are the same as in the PHP AJAX Suggest chapter. The showRSS() Function Every time an option is selected in the input field this function executes the following: 1. 2. 3. 4. 5. 6. Defines the url (filename) to send to the server Adds a parameter (q) to the url with the selected option from the drop down box Adds a random number to prevent the server from using a cached file Calls on the GetXmlHttpObject function to create an XMLHTTP object, and tells the object to execute a function called stateChanged when a change is triggered Opens the XMLHTTP object with the given url. Sends an HTTP request to the server
<?php //get the q parameter from URL $q=$_GET["q"]; //find out which feed was selected if($q=="Google") { $xml=("http://news.google.com/news?ned=us&topic=h&output=rss"); } elseif($q=="MSNBC") { $xml=("http://rss.msnbc.msn.com/id/3032091/device/rss/rss.xml"); } $xmlDoc = new DOMDocument(); $xmlDoc->load($xml); //get elements from "<channel>" $channel=$xmlDoc->getElementsByTagName('channel')->item(0); $channel_title = $channel->getElementsByTagName('title') ->item(0)->childNodes->item(0)->nodeValue; $channel_link = $channel->getElementsByTagName('link') ->item(0)->childNodes->item(0)->nodeValue; $channel_desc = $channel->getElementsByTagName('description') ->item(0)->childNodes->item(0)->nodeValue; //output elements from "<channel>" echo("<p><a href='" . $channel_link . "'>" . $channel_title . "</a>"); echo("<br />"); echo($channel_desc . "</p>"); //get and output "<item>" elements $x=$xmlDoc->getElementsByTagName('item'); for ($i=0; $i<=2; $i++) { $item_title=$x->item($i)->getElementsByTagName('title') ->item(0)->childNodes->item(0)->nodeValue; $item_link=$x->item($i)->getElementsByTagName('link') ->item(0)->childNodes->item(0)->nodeValue; $item_desc=$x->item($i)->getElementsByTagName('description') ->item(0)->childNodes->item(0)->nodeValue; echo ("<p><a href='" . $item_link . "'>" . $item_title . "</a>"); echo ("<br />"); echo ($item_desc . "</p>"); } ?>
a a a a
simple HTML form JavaScript PHP page text file to store the results
<html> <head> <script src="poll.js"></script> </head> <body> <div id="poll"> <h2>Do you like PHP and AJAX so far?</h2> <form> Yes: <input type="radio" name="vote" value="0" onclick="getVote(this.value)"> <br>No: <input type="radio" name="vote" value="1" onclick="getVote(this.value)"> </form> </div> </body> </html>
0||0
The first number represents the "Yes" votes, the second number represents the "No" votes. Note: Remember to allow your web server to edit the text file. Do NOT give everyone access, just the web server (PHP).
The JavaScript
The JavaScript code is stored in "poll.js" and linked to in the HTML document:
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 || xmlHttp.readyState=="complete") { 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 }
Example Explained
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. 2. 3. 4. 5. 6.
Defines the url (filename) to send to the server Adds a parameter (vote) to the url with the content of the input field Adds a random number to prevent the server from using a cached file Calls on the GetXmlHttpObject function to create an XMLHTTP object, and tells the object to execute a function called stateChanged when a change is triggered Opens the XMLHTTP object with the given url. Sends an HTTP request to the server
<?php $vote = $_REQUEST['vote']; //get content of textfile $filename = "poll_result.txt"; $content = file($filename); //put content in array $array = explode("||", $content[0]); $yes = $array[0]; $no = $array[1]; if ($vote == 0) { $yes = $yes + 1; } if ($vote == 1) { $no = $no + 1; } //insert votes to txt file $insertvote = $yes."||".$no; $fp = fopen($filename,"w"); fputs($fp,$insertvote); fclose($fp); ?> <h2>Result:</h2> <table> <tr> <td>Yes:</td> <td> <img src="poll.gif" width='<?php echo(100*round($yes/($no+$yes),2)); ?>' height='20'> <?php echo(100*round($yes/($no+$yes),2)); ?>% </td> </tr> <tr> <td>No:</td> <td> <img src="poll.gif" width='<?php echo(100*round($no/($no+$yes),2)); ?>' height='20'> <?php echo(100*round($no/($no+$yes),2)); ?>% </td> </tr> </table>
The selected value is sent from the JavaScript and the following happens: 1. Get the content of the "poll_result.txt" file
2. 3. 4.
Put the content of the file in variables and add one to the selected variable Write the result to the "poll_result.txt" file Output a graphical representation of the poll result
Installation
The array functions are part of the PHP core. There is no installation needed to use these functions.
array_merge() array_merge_recursive() array_multisort() array_pad() array_pop() array_product() array_push() array_rand() array_reduce() array_reverse() array_search() array_shift() array_slice() array_splice() array_sum() array_udiff() array_udiff_assoc() array_udiff_uassoc() array_uintersect() array_uintersect_assoc() array_uintersect_uassoc() array_unique() array_unshift() array_values() array_walk() array_walk_recursive() arsort() asort() compact() count() current() each() end() extract() in_array() key() krsort() ksort() list() natcasesort() natsort() next() pos() prev() range() reset() rsort() shuffle()
Merges one or more arrays into one array 4 Merges one or more arrays into one array 4 Sorts multiple or multi-dimensional arrays 4 Inserts a specified number of items, with a specified value, 4 to an array Deletes the last element of an array 4 Calculates the product of the values in an array 5 Inserts one or more elements to the end of an array 4 Returns one or more random keys from an array 4 Returns an array as a string, using a user-defined function 4 Returns an array in the reverse order 4 Searches an array for a given value and returns the key 4 Removes the first element from an array, and returns the 4 value of the removed element Returns selected parts of an array 4 Removes and replaces specified elements of an array 4 Returns the sum of the values in an array 4 Compares array values in a user-made function and 5 returns an array Compares array keys, and compares array values in a 5 user-made function, and returns an array Compares array keys and array values in user-made 5 functions, and returns an array Compares array values in a user-made function and 5 returns an array Compares array keys, and compares array values in a 5 user-made function, and returns an array Compares array keys and array values in user-made 5 functions, and returns an array Removes duplicate values from an array 4 Adds one or more elements to the beginning of an array 4 Returns all the values of an array 4 Applies a user function to every member of an array 3 Applies a user function recursively to every member of an 5 array Sorts an array in reverse order and maintain index 3 association Sorts an array and maintain index association 3 Create array containing variables and their values 4 Counts elements in an array, or properties in an object 3 Returns the current element in an array 3 Returns the current key and value pair from an array 3 Sets the internal pointer of an array to its last element 3 Imports variables into the current symbol table from an 3 array Checks if a specified value exists in an array 4 Fetches a key from an array 3 Sorts an array by key in reverse order 3 Sorts an array by key 3 Assigns variables as if they were an array 3 Sorts an array using a case insensitive "natural order" 4 algorithm Sorts an array using a "natural order" algorithm 4 Advance the internal array pointer of an array 3 Alias of current() 3 Rewinds the internal array pointer 3 Creates an array containing a range of elements 3 Sets the internal pointer of an array to its first element 3 Sorts an array in reverse order 3 Shuffles an array 3
Alias of count() Sorts an array Sorts an array with a user-defined function and maintain index association Sorts an array by keys using a user-defined function Sorts an array by values using a user-defined function
3 3 3 3 3
Installation
The windows version of PHP has built-in support for the calendar extension. So, the calendar functions will work automatically. However, if you are running the Linux version of PHP, you will have to compile PHP with --enablecalendar to get the calendar functions to work.
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 date.default_latitude Default "31.7667" Description Specifies the default latitude (available since PHP 5). This option is used by date_sunrise() and date_sunset() Specifies the default longitude (available since PHP 5). This option is used by date_sunrise() and date_sunset() Specifies the default sunrise zenith (available since PHP 5). This option is used by date_sunrise() and date_sunset() Specifies the default sunset zenith (available since PHP 5). This option is used by date_sunrise() and date_sunset() Specifies the default timezone (available since PHP 5.1) Changeable PHP_INI_ALL
date.default_longitude "35.2333"
PHP_INI_ALL
date.sunrise_zenith
"90.83"
PHP_INI_ALL
date.sunset_zenith
"90.83"
PHP_INI_ALL
date.timezone
""
PHP_INI_ALL
Formats a local time/date as integer Returns an array that contains the time components of a Unix timestamp Returns the microseconds for the current time Returns the Unix timestamp for a date Formats a local time/date according to locale settings Parses a time/date generated with strftime() Parses an English textual date or time into a Unix timestamp Returns the current time as a Unix timestamp
5 4 3 3 3 5 3 3
Installation
The directory functions are part of the PHP core. There is no installation needed to use these functions.
Returns an entry from a directory handle Resets a directory handle Lists files and directories inside a specified path
3 3 5
Installation
The error and logging functions are part of the PHP core. There is no installation needed to use these functions.
16 32 64 128 256
4 4 4 4 4
512
E_USER_WARNING
1024 E_USER_NOTICE
5 5
8191 E_ALL
Installation
The filter functions are part of the PHP core. There is no installation needed to use these functions.
Checks if a variable of a specified input type exist Returns the ID number of a specified filter Get input from outside the script and filter it Get multiple inputs from outside the script and filters them Returns an array of all supported filters Get multiple variables and filter them Get a variable and filter it
5 5 5 5 5 5 5
PHP Filters
ID Name FILTER_CALLBACK FILTER_SANITIZE_STRING FILTER_SANITIZE_STRIPPED FILTER_SANITIZE_ENCODED FILTER_SANITIZE_SPECIAL_CHARS FILTER_SANITIZE_EMAIL FILTER_SANITIZE_URL FILTER_SANITIZE_NUMBER_INT FILTER_SANITIZE_NUMBER_FLOAT FILTER_SANITIZE_MAGIC_QUOTES FILTER_UNSAFE_RAW FILTER_VALIDATE_INT FILTER_VALIDATE_BOOLEAN Description Call a user-defined function to filter data Strip tags, optionally strip or encode special characters Alias of "string" filter URL-encode string, optionally strip or encode special characters HTML-escape '"<>& and characters with ASCII value less than 32 Remove all characters, except letters, digits and !#$%&'*+-/=?^_`{|}~@.[] Remove all characters, except letters, digits and $-_.+!*'(),{}|\\^~[]`<>#%";/?:@&= Remove all characters, except digits and +Remove all characters, except digits, +- and optionally .,eE Apply addslashes() Do nothing, optionally strip or encode special characters Validate value as integer, optionally from the specified range Return TRUE for "1", "true", "on" and "yes", FALSE for "0", "false", "off", "no", and "", NULL otherwise Validate value as float Validate value against regexp, a Perl-compatible regular expression Validate value as URL, optionally with required components Validate value as e-mail Validate value as IP address, optionally only IPv4 or IPv6 or not from private or reserved ranges
Installation
The windows version of PHP has built-in support for the FTP extension. So, the FTP functions will work automatically. However, if you are running the Linux version of PHP, you will have to compile PHP with --enableftp (PHP 4+) or --with-ftp (PHP 3) to get the FTP functions to work.
Determine resume position and start position for get and put requests automatically Asynchronous transfer has failed Asynchronous transfer has finished Asynchronous transfer is still active
Installation
The directory functions are part of the PHP core. There is no installation needed to use these functions.
Installation
These functions require the libxml package. Download at xmlsoft.org
LIBXML_NOENT LIBXML_NOERROR LIBXML_NONET LIBXML_NOWARNING LIBXML_NOXMLDECL LIBXML_NSCLEAN LIBXML_XINCLUDE LIBXML_ERR_ERROR LIBXML_ERR_FATAL LIBXML_ERR_NONE LIBXML_ERR_WARNING LIBXML_VERSION LIBXML_DOTTED_VERSION
5 5 5 5 5 5 5 5 5 5 5 5 5
Requirements
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.
Installation
The mail functions are part of the PHP core. There is no installation needed to use these functions.
Runtime Configuration
The behavior of the mail functions is affected by settings in the php.ini file. Mail configuration options: Name SMTP smtp_port sendmail_from Default "localhost" "25" NULL Description Windows only: The DNS name or IP address of the SMTP server Windows only: The SMTP port number. Available since PHP 4.3 Windows only: Specifies the "from" address to be used in email sent from PHP Unix systems only: Specifies where the sendmail program can be found (usually /usr/sbin/sendmail or /usr/lib/sendmail) Changeable PHP_INI_ALL PHP_INI_ALL PHP_INI_ALL
sendmail_path
NULL
PHP_INI_SYSTEM
Installation
The math functions are part of the PHP core. There is no installation needed to use these functions.
pow() rad2deg() rand() round() sin() sinh() sqrt() srand() tan() tanh()
Returns the value of x to the power of y Converts a radian number to a degree Returns a random integer Rounds a number to the nearest integer Returns the sine of a number Returns the hyperbolic sine of a number Returns the square root of a number Seeds the random number generator Returns the tangent of an angle Returns the hyperbolic tangent of an angle
3 3 3 3 3 4 3 3 3 4
Installation
The misc functions are part of the PHP core. There is no installation needed to use these functions.
Runtime Configuration
The behavior of the misc functions is affected by settings in the php.ini file. Misc. configuration options:
highlight.string
"#DD0000"
Description FALSE indicates that scripts will be terminated as soon as they try to output something after a client has aborted their connection Color for highlighting a string in PHP syntax Color for highlighting PHP comments Color for syntax highlighting PHP keywords (e.g. parenthesis and semicolon) Color for background Default color for PHP syntax Color for HTML code Name and location of browsercapabilities file (e.g. browscap.ini)
Changeable PHP_INI_ALL
CONNECTION_TIMEOUT __COMPILER_HALT_OFFSET__
Installation
For the MySQL functions to be available, you must compile PHP with MySQL support. For compiling, use --with-mysql=DIR (the optional DIR points to the MySQL directory). Note: For full functionality of MySQL versions greater than 4.1., use the MySQLi extension instead. If you would like to install both the mysql extension and the mysqli extension you should use the same client library to avoid any conflicts. Installation on Linux Systems PHP 5+: MySQL and the MySQL library is not enabled by default. Use the --with-mysql=DIR configure option to include MySQL support and download headers and libraries from www.mysql.com. Installation on Windows Systems PHP 5+: MySQL is not enabled by default, so the php_mysql.dll must be enabled inside of php.ini. Also, PHP needs access to the MySQL client library. A file named libmysql.dll is included in the Windows PHP distribution, and in order for PHP to talk to MySQL this file needs to be available to the Windows systems PATH. To enable any PHP extension, the PHP extension_dir setting (in the php.ini file) should be set to the directory where the PHP extensions are located. An example extension_dir value is c:\php\ext. Note: If you get the following error when starting the web server: "Unable to load dynamic library './php_mysql.dll'", this is because php_mysql.dll or libmysql.dll cannot be found by the system.
Runtime Configuration
The behavior of the MySQL functions is affected by settings in the php.ini file. MySQL configuration options: Name Default mysql.allow_persistent "1" mysql.max_persistent mysql.max_links "-1" "-1" Description Whether or not to allow persistent connections The maximum number of persistent connections per process The maximum number of connections per process (persistent connections included) Trace mode. When set to "1", warnings Changeable PHP_INI_SYSTEM PHP_INI_SYSTEM PHP_INI_SYSTEM
mysql.trace_mode
"0"
PHP_INI_ALL
and SQL-errors will be displayed. Available since PHP 4.3 The default TCP port number to use The default socket name to use. Available since PHP 4.0.1 The default server host to use (doesn't apply in SQL safe mode) The default user name to use (doesn't apply in SQL safe mode) The default password to use (doesn't apply in SQL safe mode) Connection timeout in seconds
Resource Types
There are two resource types used in the MySQL extension. The first one is the link_identifier for a database connection, the second is a resource which holds the result of a query. Note: Most MySQL functions accept link_identifier as the last optional parameter. If it is not provided, the last opened connection is used.
mysql_field_name() mysql_field_seek() mysql_field_table() mysql_field_type() mysql_free_result() mysql_get_client_info() mysql_get_host_info() mysql_get_proto_info() mysql_get_server_info() mysql_info() mysql_insert_id() mysql_list_dbs() mysql_list_fields() mysql_list_processes() mysql_list_tables() mysql_num_fields() mysql_num_rows() mysql_pconnect() mysql_ping() mysql_query() mysql_real_escape_string() mysql_result() mysql_select_db() mysql_stat() mysql_tablename() mysql_thread_id() mysql_unbuffered_query()
Returns the name of a field in a recordset 3 Moves the result pointer to a specified field 3 Returns the name of the table the specified field is in 3 Returns the type of a field in a recordset 3 Free result memory 3 Returns MySQL client info 4 Returns MySQL host info 4 Returns MySQL protocol info 4 Returns MySQL server info 4 Returns information about the last query 4 Returns the AUTO_INCREMENT ID generated from the 3 previous INSERT operation Lists available databases on a MySQL server 3 Deprecated. Lists MySQL table fields. Use mysql_query() 3 instead Lists MySQL processes 4 Deprecated. Lists tables in a MySQL database. Use 3 mysql_query() instead Returns the number of fields in a recordset 3 Returns the number of rows in a recordset 3 Opens a persistent MySQL connection 3 Pings a server connection or reconnects if there is no 4 connection Executes a query on a MySQL database 3 Escapes a string for use in SQL statements 4 Returns the value of a field in a recordset 3 Sets the active MySQL database 3 Returns the current system status of the MySQL server 4 Deprecated. Returns the table name of field. Use 3 mysql_query() instead Returns the current thread ID 4 Executes a query on a MySQL database (without fetching / 4 buffering the result)
The mysql_fetch_array() function uses a constant for the different types of result arrays. The following constants are defined: Constant MYSQL_ASSOC MYSQL_BOTH Description PHP Columns are returned into the array with the fieldname as the array index Columns are returned into the array having both a numerical index and the fieldname as the array index
MYSQL_NUM
Columns are returned into the array having a numerical index (index starts at 0)
Installation
The SimpleXML functions are part of the PHP core. There is no installation needed to use these functions.
This extension uses the Expat XML parser. Expat is an event-based parser, it views an XML document as a series of events. When an event occurs, it calls a specified function to handle it. Expat is a non-validating parser, and ignores any DTDs linked to a document. However, if the document is not well formed it will end with an error message. Because it is an event-based, non validating parser, Expat is fast and well suited for web applications. The XML parser functions lets you create XML parsers and define handlers for XML events.
Installation
The XML functions are part of the PHP core. There is no installation needed to use these functions.
declarations
Installation
For the Zip file functions to work on your server, these libraries must be installed:
The ZZIPlib library by Guido Draheim: Download the ZZIPlib library The Zip PELC extension: Download the Zip PELC extension
Installation on Linux Systems PHP 5+: Zip functions and the Zip library is not enabled by default and must be downloaded from the links above. Use the --with-zip=DIR configure option to include Zip support. Installation on Windows Systems PHP 5+: Zip functions is not enabled by default, so the php_zip.dll and the ZZIPlib library must be downloaded from the link above. php_zip.dll must be enabled inside of php.ini.
To enable any PHP extension, the PHP extension_dir setting (in the php.ini file) should be set to the directory where the PHP extensions are located. An example extension_dir value is c:\php\ext.