I am having an issue when I am using a post request on an PHP file and I am passing simple keys and values to post. For example say key = productId
and value = 123
.
<?php
$data_back = json_decode(file_get_contents('php://input'));
return $data_back;
I am receiving nothing. Please assist.