<?php
header('Content-Type: text/plain');
echo "POST: " . print_r(\$_POST, true);
echo "\nINPUT: " . file_get_contents('php://input') . "\n";
echo "METHOD: " . \$_SERVER['REQUEST_METHOD'] . "\n";
