You install the SAP MaxDB PHP library php_maxdb.dll on Microsoft Windows to use the SAP MaxDB PHP extension.
You have downloaded the PHP binary distribution for Microsoft Windows. You can find this here: http://php.net/downloads.php.
You have downloaded the appropriate SAP MaxDB PHP library for your PHP version. The PHP5 and PHP4 libraries can be found here: http://pecl4win.php.net
You have installed the SAP MaxDB SQLDBC software (software components Base and SQLDBC).
In the following, the installation directory is referred to as <independent_program_path>.
More information: Glossary, Installation
Note
To reproduce the test examples described in the following, you also require a database. For this reason, we recommend that you install the complete SAP MaxDB software first, create a database and load the tutorial data to this database.
Unpack the PHP binary distribution to a local directory <php_binary> on your computer.
Select the appropriate SAP MaxDB PHP library for your PHP version and unpack it to the directory containing the extensions for the PHP binary distribution:
For PHP5, unpack the package to <php_binary>\ext
For PHP4, unpack the package to <php_binary>\extensions
Copy the file php.ini-recommended from the <php_binary> directory to the directory of your version of Microsoft Windows <win_dir> and rename it to php.ini:
copy <php_binary>\php.ini-recommended <win_dir>\php.ini
Open the php.ini file in an editor and add the following line to the Dynamic Extensions section:
extension=php_maxdb.dll
Look for extension_dir in the php.ini file and enter the directory containing the extensions for the PHP binary distribution of your PHP version.
For PHP5, enter:
extension_dir="<php_binary>\ext"
For PHP4, enter:
extension_dir="<php_binary>\extensions"
Save your changes and close the php.ini file.
Enter the necessary paths to the PATH environment variable:
SET PATH=%PATH%;<php_binary>;<php_binary>\ext
The SAP MaxDB PHP library has been installed.
To check whether the installation has been successful you can display the list of all installed PHP extensions using the following command:
php -m
If no errors have occurred, the PHP extension maxdb is displayed in the list.
More information: Testing the PHP Library on Microsoft Windows
You are using PHP5 and want to install the SAP MaxDB PHP extension for Microsoft Windows (32 bit).
You are using the Windows XP operating system and this is installed in the C:\WINDOWS directory.
Unpack PHP 5.0.0 to the directory C:\php-5.0.0-Win32.
Unpack the http://snaps.php.net/win32/PECL_5_0/phpmaxdb.dll package to C:\php-5.0.0-Win32\ext.
Copy the file php.ini-recommended from the C:\php-5.0.0-Win32 directory to the C:\WINDOWS directory and rename it php.ini:
copy C:\php-5.0.0-Win32\php.ini-recommended C:\WINDOWS\php.ini
Open the php.ini file in an editor and add the following line to the Dynamic Extensions section:
extension=php_maxdb.dll
Look for extension_dir in the php.ini file and enter the directory C:\php-5.0.0-Win32\ext.
extension_dir=″c:\php-5.0.0-Win32\ext″
Save your changes and close the php.ini file.
Enter the necessary paths to the PATH environment variable:
SET PATH=%PATH%;C:\php-5.0.0-Win32;C:\php-5.0.0-Win32\ext