File size: 294 Bytes
b5d0dcc
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
<?php
$app_name   = $_POST[“app”];
$sender     = $_POST[“sender”];
$message    = $_POST[“message”];
$phone      = $_POST["phone"];
$group_name = $_POST["group_name"];

$response = array("reply" => "Hello $sender, we received your message $message.");
echo json_encode($response);
?>