I have the following code.\[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();\[/code\]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.