+ 4
How to embed java into php?
i have an application written in java. i need to run it on web server, using php.
1 Answer
+ 1
You could use exec() function that executes external programs.
exec("java -jar file.jar", $out);
i have an application written in java. i need to run it on web server, using php.