Hi there,
I am new to php.
How can i have interaction between php and a Java Applet? (without sockets if possible).
Thanx in advance
PHP and Java Applet
Moderator: General Moderators
php runs server-side, a java applet client-side.
But one can query an AppletContext-object that exposes a function showDocument(URL url, String target) to request a new document in the browser (that php at the server can handle). But this might be prohibited by the browser-settings.
see also (e.g.): http://java.sun.com/j2se/1.4.1/docs/api ... ntext.html
But one can query an AppletContext-object that exposes a function showDocument(URL url, String target) to request a new document in the browser (that php at the server can handle). But this might be prohibited by the browser-settings.
see also (e.g.): http://java.sun.com/j2se/1.4.1/docs/api ... ntext.html