I have the following code.
String name = "hello";
String pass = "testing";
String des = "this is info";
String u = "http://mysite.com/insertinfo.php?name=" + name + "&pass=" + pass + "&description=" + des;
URL url = new URL(u);
url.openConnection();
for some reason it isn't running the php script on the site and I don't know what's wrong, please help!
I know that the script runs properly, if I put it in my webbrowser it inserts info fine, but it doesn't in Java.