I have an Android application, which creates a TXT file in PHP, bringing the XML form data from Android itself. Look at the code:
$f = fopen('POST_DATA.txt', 'a');
fwrite($f, 'ID: '.$id."\r\n");
$id = uniqid( time() );
fwrite($f, '...
asked by
19.06.2015 / 14:17