I am trying to get an app of mine to communicate with a database that is hosted on a server. I did some reading and found that one of the better ways to do this was to use a php as an intermediary step.
I have a .php file that can takes in data, converts it into queries, then writes it to the database.
I am just wondering how to get my app to talk to the .php.
At the most basic: Make a http request to the php file.
Of course you will probably want authentication, and CRUD operations.