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

7 lines
124 B
PHP

<?php
if (!$_REQUEST["message"]){
print "ERROR: message property not found";
}else{
print $_REQUEST["message"];
}
?>