I have a problem.
I want to send some variables from an applet to a php-script. I know I can use the GET method by writing
myPage.php?var1=Hello
But if I want to send many variables I can't use the GET method. How do I use the POST method?
I know I can open a socket, the question is what do I send to my php-script, so that it can read the variables, use them and echo them back ?