fetch("modal_img.php", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({ // param
title: "Test",
body: "I am testing!",
userId: 1,
}),
})
.then((response) => console.log(response));