在这方面需要帮助 1. 我需要设计一个用户输入表单,其中包含三个文本字段,例如 T1、T2、T3。2. 现在应该将这三个的输入打包到 encode_json 3.我有一个包含多行的表,自动增量 id 为 1,2,3,4 等等。现在应该将相同的编码 json 消息与 id 和编码的 json 消息一起传递到文件 send_message.php 中。这是 send_message.php
<?php
if (isset($_GET["regId"]) && isset($_GET["message"])) {
$regId = $_GET["regId"];
$message = $_GET["message"];
include_once './GCM.php';
$gcm = new GCM();
$registatoin_ids = array($regId);
$message = array("price" => $message);
$result = $gcm->send_notification($registatoin_ids, $message);
echo $result;
}
?>
对于与表相关的循环和行数,您可以使用以下内容
if ($no_of_users > 0) {
?>
<?php
while ($row = mysql_fetch_array($users)) {