File "post_reception.php"
Full Path: /home/analogde/www/XTRAIL/WORKAREA/post_reception.php
File size: 193 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
// receive data from app's http request
$data=$_POST["myHttpData"];
// write data from my android app to a text file
file_put_contents('myTextFile.txt',$data);
echo "petit malin ...";
?>