1

I am currently working on my project like Parental control. I am trying to find a way , that if there is any procedure or way to send a notification from an android phone to a website whenever the android phone sends/receives an SMS and dials/receives a call. On website , a database will be maintained for these notifications.

abhij89
  • 625
  • 3
  • 18
Ali Ansari
  • 219
  • 3
  • 14

2 Answers2

0

I think you want to maintain database, based on mobile even. You can create API call, that will send data to database while any activity happened on mobile. That api will store notification on DB.

On web you can create AJAX call that will check in DB, if any new notification come or not, if new record found you can show it on website.

This is what I think the best way to do so...

Hiren Soni
  • 574
  • 3
  • 11
0

You could send a get request or post request to a website.
Sending POST data in Android
Android - Sending HTTPS Get Request

Just some examples. You will probably be looking for a restful api. I haven't read this, but it looks viable:
http://www.9lessons.info/2012/05/create-restful-services-api-in-php.html

Community
  • 1
  • 1
Anyone
  • 2,814
  • 1
  • 22
  • 27