Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 15403 |
manish.sha |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
require_once('loader.php');
|
|
|
4 |
|
|
|
5 |
$gcmRegID = $_GET["regId"]; // GCM Registration ID got from device
|
|
|
6 |
$pushMessage = $_GET["message"];
|
|
|
7 |
|
|
|
8 |
if (isset($gcmRegID) && isset($pushMessage)) {
|
|
|
9 |
|
|
|
10 |
|
|
|
11 |
$registatoin_ids = array($gcmRegID);
|
|
|
12 |
$message = array("price" => $pushMessage);
|
|
|
13 |
|
|
|
14 |
$result = send_push_notification($registatoin_ids, $message);
|
|
|
15 |
|
|
|
16 |
echo $result;
|
|
|
17 |
}
|
|
|
18 |
?>
|