I am creating an API to create the connection to MySQL. Can I use PHP to create this API? Can I use this API on iOS? I've seen in many places ( example ) I can use this API for Android, but I did not see anyone using it for iOS.
I am creating an API to create the connection to MySQL. Can I use PHP to create this API? Can I use this API on iOS? I've seen in many places ( example ) I can use this API for Android, but I did not see anyone using it for iOS.
A Rest API is just for the application to communicate with the database in any client environment, such as IOS or ANDROID.
In this way your application will communicate via URL with its API that can be developed in any server language, such as PHP or Ruby.
And you can integrate any application independent of your platform, as long as it can do URL requests, the only disadvantage is that your application will depend on the internet to communicate with the API.