How to send input from an app in java to a php file

0

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?

    
asked by anonymous 08.11.2015 / 02:41

1 answer

0

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.

    
08.11.2015 / 15:23