You Are Here: Home » PHP Tutorial
PHP Zip File Introduction
The Zip files functions allows you to read ZIP files.
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...
PHP XML Parser Introduction
The XML functions lets you parse, but not validate, XML documents.
XML is a data format for standardized structured document exchange. More information on XML can be found in our XML Tutorial.
This extension uses the Expat...
PHP String Introduction
The string functions allow you to manipulate strings.
Installation
The string functions are part of the PHP core. There is no installation needed to use these functions.
PHP String Functions
PHP: indicates the earliest version...
PHP SimpleXML Introduction
The SimpleXML functions lets you convert XML to an object.
This object can be processed, like any other object, with normal property selectors and array iterators.
Some of these functions requires the newest PHP build.
Installation
The...
The MySQL functions allows you to access MySQL database servers.
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:...
PHP Miscellaneous Introduction
The misc. functions were only placed here because none of the other categories seemed to fit.
Installation
The misc functions are part of the PHP core. There is no installation needed to use these functions.
Runtime...
PHP Math Introduction
The math functions can handle values within the range of integer and float types.
Installation
The math functions are part of the PHP core. There is no installation needed to use these functions.
PHP Math Functions
PHP: indicates...
PHP Mail Introduction
The mail() function allows you to send emails directly from a script.
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...