object(stdClass)#1 (1) {
["text"]=>
string(4) "Text"
}
fetch(url , {
method: 'POST',
headers: {
'Content-Type': 'text/plain'
},
body: JSON.stringify({"text" : mes})
}).then(res=>res.text()).then(rez=>console.log(rez));
const mes = "Text";
const url = "*ссылка на php скрипт*";
fetch(url , {
method: 'POST',
body: JSON.stringify({"text" : mes})
}).then(res=>res.text()).then(rez=>console.log(rez));
.then(res=>res.text()).then(rez=>console.log(rez));