1 2 3 4 5 6 7 8
<?php if (!$_REQUEST["message"]){ print "ERROR: message property not found"; }else{ header("Content-Type: application/json"); print $_REQUEST["message"]; } ?>