<?php

// This simply prints out whatever information it was sent via POST.
// Consider that it could just as easily record this to disk or email
// dumped information somewhere malicious.

header("Access-Control-Allow-Origin: *");

print_r(array_map(htmlspecialchars,$_POST));

?>
