2

I'm making an application, I already have a website nodejs with expressjs framework and mysql database. how to process the input, update and delete data from android to mysql without using php server side? if anyone has ever made before? thank you

2
  • You can make the RESTFull APIs and access those APIs from Android. Commented Apr 3, 2015 at 11:02
  • stackoverflow.com/questions/15732853/… Commented Apr 3, 2015 at 11:03

1 Answer 1

1

Basicly that's what the server side code is doing! Handling all the data and requests between the two (android app & the relational database) Any attempt to not use the PhP or any type of language for that matter would cause only to iconically change some data from the app! But that's not the case since you want to alter also the database as you clearly mention!

As for the how: The only way to use the data transfer to the app is by the use of json packets! A exchange should be made between the app and the database "through" the server side php code and they should exchange json files with data! Then your problem is solved.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.