我是一名 android 开发人员,目前使用 PHP 在 GCM 服务器端工作。从我的客户端,我将 gcm 响应令牌存储在一个数据库中,现在我想一次性向注册用户发送消息。我不知道该怎么做,我完全糊涂了。我的简单 HTML 文件是:
<html>
<head>
<title>
GCM
</title>
</head>
<body topmargin="50" leftmargin="50" CLASS = "bg">
<form action="send_message.php" name="myform" method="post">
<h4>Admin for sending notificaion to the registered user</h4>
Notification Text: <input name="appText" size="15" type="text"/><br>
URL: <input name="url" size="15" type="text" /><br>
<button type="submit">Submit</button>
</form>
</body>
</html>
而且,我的 send_message.php:
<?php
error_reporting (0);
$link = mysql_connect("localhost","db","db");
if (!$link)
{
die(mysql_error()) ;
}
mysql_select_db("gcm_user")or die(mysql_error());
........................................
.....................................
.....................................
?>
现在,在 php 文件中我应该做什么,我已经尝试过这个链接Android Hive example
只是,现在通过这个链接。请建议我如何使用此解决方案解决我的问题。我的问题的新链接。
但我只想要一个 php 用于我的目的。请帮助克服这个 prm。