Posts by Felipe • 37 points
2 posts
-
1
votes2
answers337
viewsA: No data in Json Array on Android
I resolved so: public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); AcessoRest ar = new AcessoRest(); String chamadaWS; chamadaWS =…
-
1
votes1
answer295
viewsQ: How to take data from a form and play in a PHP Array
I have an Android application, which creates a TXT file in PHP, bringing the data from the XML form of Android itself. See the code: $f = fopen('POST_DATA.txt', 'a'); fwrite($f, 'ID: '.$id."\r\n");…