Hi all, I have part of code from eclipse like this, and how to write down HttpPost on B4A :
B4X:
String url_data_insert = "http://192.168.0.10/testandroid/insert.php";
HttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = HttpPost(url_data_insert);
ArrayList<NameValuePair> param = new ArrayList<NameValuePair>();
param.add(new BasicNameValuePair("username", editUser.getText().toString()));
param.add(new BasicNameValuePair("password", editPass.getText().toString()));