Ignacio Hernandez
Lurker
I am new to android but all of the examples that I have seen which utilize a web client always have URL's in them such as
. Would it be possible for instance to have just the insert.php file on your server and connect the android application to it using something like C://webroot/insert.php ? or do I need it in URL format.
Java:
URL url = new URL("www.example.com/insert.php");
HttpURLConnection myurl = (HttpURLConnection) url.openConnection();