I'm trying to send the JSON below to a PHP script via the POST method.
{
"operation": {
"name": "Nicolas",
"age": 24,
"sex": "Male",
}
}
What I wanna do is handle the information that is coming from the JSON like name, age, sex, and print unto the PHP response.
How can I do this?