Ok having some issues. I installed the latest SDK from Java and then went to the php ini file and changed the extension path and made the dll extension active by taking out the ; in front of it. Then I went and did this for the Java section:
[Java]
java.class.path = "d:\php\extensions\php_java.jar"
java.home = C:\j2sdk1.4.1_01\bin\
java.library = C:\j2sdk1.4.1_01\jre\bin\client\jvm.dll
java.library.path = D:\php\extensions
Then I use the basic test to see if it works:
<?php
$system_inst = newJava("java.lang.System");
?>
But when I look at the page with that code I get:
Fatal error: Call to undefined function: newjava() in c:\inetpub\wwwroot\index.php on line 3
What am I doing wrong? Thanks!