Peter,
Shopify doesn't send POST variables instead it sends a json object to the body. You can read this in PHP with something such as
$entityBody = file_get_contents('php://input');
You can then json decode it in to a variable with
$jsonBody = json_decode($entityBody);
Thanks,
Ryan