Posted by admin | Posted in PHP Tutorial | Posted on 10-08-2010-05-2008
0
For the Zip file functions to work on your server, these libraries must be installed:
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.
Posted by admin | Posted in GoWeb99 | Posted on 10-08-2010-05-2008
0
The XML functions are part of the PHP core. There is no installation needed to use these functions.
Posted by admin | Posted in PHP Tutorial | Posted on 10-08-2010-05-2008
0
The string functions are part of the PHP core. There is no installation needed to use these functions.
Posted by admin | Posted in PHP Tutorial | Posted on 10-08-2010-05-2008
0
The SimpleXML functions are part of the PHP core. There is no installation needed to use these functions.
Posted by admin | Posted in PHP Tutorial | Posted on 10-08-2010-05-2008
0
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.
Posted by admin | Posted in PHP Tutorial | Posted on 10-08-2010-05-2008
0
The misc functions are part of the PHP core. There is no installation needed to use these functions.
Posted by admin | Posted in PHP Tutorial | Posted on 10-08-2010-05-2008
0
The math functions are part of the PHP core. There is no installation needed to use these functions.
Posted by admin | Posted in PHP Tutorial | Posted on 10-08-2010-05-2008
0
The mail functions are part of the PHP core. There is no installation needed to use these functions.
Posted by admin | Posted in PHP Tutorial | Posted on 10-08-2010-05-2008
0
The directory functions are part of the PHP core. There is no installation needed to use these functions.
Posted by admin | Posted in PHP Tutorial | Posted on 10-08-2010-05-2008
0
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 –enable-ftp (PHP 4+) or –with-ftp (PHP 3) to get the FTP functions to work.
Posted by admin | Posted in PHP Tutorial | Posted on 10-08-2010-05-2008
0
The filter functions are part of the PHP core. There is no installation needed to use these functions.
Posted by admin | Posted in PHP Tutorial | Posted on 10-08-2010-05-2008
0
The filesystem functions are part of the PHP core. There is no installation needed to use these functions.
Posted by admin | Posted in PHP Tutorial | Posted on 10-08-2010-05-2008
0
The error and logging functions are part of the PHP core. There is no installation needed to use these functions.
Posted by admin | Posted in PHP Tutorial | Posted on 10-08-2010-05-2008
0
The directory functions are part of the PHP core. There is no installation needed to use these functions.
Posted by admin | Posted in PHP Tutorial | Posted on 10-08-2010-05-2008
0
The date/time functions are part of the PHP core. There is no installation needed to use these functions.
Posted by admin | Posted in PHP Tutorial | Posted on 10-08-2010-05-2008
0
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 –enable-calendar to get the calendar functions to work.
Posted by admin | Posted in PHP Tutorial | Posted on 10-08-2010-05-2008
0
The array functions are part of the PHP core. There is no installation needed to use these functions.