Hi there! I read an article at devshed about PHP and JAVA and I got really excited about the idea. I have a few questions here. Could I do the following:
1st - Create a Java class and then save it on my application server. This class only access a Database.
2nd - Configure PHP's java.library.path , java.home,java.class.path to my appserver.
3rd - Use something like this in my php code:
<?
$recordSet = new JAVA("DBAccess");
while($recordSet->GetUsers() != eof)
{
}
?>
Well if this could be done, then I really ended with all my problems ...