0

I am creating an app where user data should be saved in my database. When a user submit certain data like "name" "personal note" I need to get a real time notification from my MySQL database. How do I implement this?

1 Answers1

0

It may be easier to create a notification from the submission, rather that from the database.

Which User on which database ? Who is client, who is server ?

compte14031879
  • 1,531
  • 14
  • 27
  • Android app is the client .. It's a simple app where can can submit "name" "phone Number" .. Am hosting a MySQL server where the data should be stored from the Android application. I will have a php script on the server which will receive the data from Android app and store it in database. I need to refresh the db every time to see if I received any data..I want to get a notification every time user submit data from the app. That's what am looking to implement. – Abhilash Murali Nov 23 '15 at 16:10