$abc = "ABv";
$body='{
"messages":{
"a1": "'.$abc.'",
"a2": "......",
"a3": "This is a test message",
"a4":"abc12"
}
}';
// OR
$myArr = array("messages" => array("a1" => $abc, "a2" => "....."));
$myJSON = json_encode($myArr);
// Test the code
echo $body;
echo "<br>";
echo...