I have an Android
application that posts String
data to a PHP
file on my server.
I am using a simple PHP GET
to retrieve the data, but currently am not doing anything with it:
<?php
$stringUploaded = $_GET['stringFromAndroid'];
?>
I would like the data that I receive to be entered into a text file
, also on the server.
What is the best way for me to do this?