How to install the Java Php extension
This file may be distributed with your programs
www.scriptol.com
--------------------------------------------------------

Search for the java path
Example: c:\jdk1.4

Search for the php extensions path
Example: c:\php\extensions

The extension directory must hold these files:
php_java.dll
php_java.jar

Set these line into php.ini (in the Windows directory)
extension_dir = c:\php\extensions
extension=php_java.dll

Search for the [java] section in php.ini
java.class.path must be assigned the path of php_java.jar
and the path of any Java class you want to use.
- If these classes are inside jar files, the jar filenames are
a part of the path.
- If several paths are required, they are separeted by semicolons
and enclosed in double quotes.

java.home must be assigned the path of the Java directory.

java.library must be assigned the path of jvm.dll.

java.library.path must be assigned the path of php extensions.

Example:
[Java]
java.class.path = "c:\php\extensions\php_java.jar;c:\myclasses"
java.home = c:\jdk1.4
java.library = c:\jdk1.4\jre\bin\client\jvm.dll
java.library.path = c:\php\extensions

