How to create android push notification server in PHP

I am developing an application, and in this application I need to implement a push notification.

Can someone suggest me how to create a server in PHP (Json, Zend Framework, if possible) and provide me with a good tutorial on push notification?

+5
source share
2 answers

Whenever you want to send a message to an Android device, your server’s contacts -> Google Server contacts -> Android device.

So you integrate your ZF application with google c2d api. Here you can find one such implementation of this type of integration with ZF http://blog.digitalstruct.com/2010/11/21/android-c2dm-with-php-and-zend-framework/

+2

All Articles