How to send input from an android app written in java to a php file on the server?
The file should save what the java code sent in a variable. How can I do this?
How to send input from an android app written in java to a php file on the server?
The file should save what the java code sent in a variable. How can I do this?
Hello,
You will need to create a webservice php to receive this value and then manipulate it as you wish. There is a post that talks about this:
How to do a webservice in php?
In addition, you can find a lot of material on google. I suggest you use the REST protocol instead of SOAP in building your webservice.