I am building a ionic app that interacts with my PHP backend. Each of my calls to the API are made with $http.post and I retrieve the data as json in my php scripts.
Is this fine or will this cause any problems for the future?
I am building a ionic app that interacts with my PHP backend. Each of my calls to the API are made with $http.post and I retrieve the data as json in my php scripts.
Is this fine or will this cause any problems for the future?
This will work, as long as you consider the following things:
You can think about offline support, caching data on the smartphone and similar things. People nowadays expect things like that.