SemanticScuttle/includes/js/dojox/rpc/tests/resources/echoJson.php

8 lines
168 B
PHP

<?php
if (!$_REQUEST["message"]){
print "ERROR: message property not found";
}else{
header("Content-Type: application/json");
print $_REQUEST["message"];
}
?>