e44a7e37b6
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@151 b3834d28-1941-0410-a4f8-b48e95affb8f
23 lines
326 B
PHP
23 lines
326 B
PHP
<?php
|
|
$jsonp = false;
|
|
$result = "";
|
|
|
|
if ($_REQUEST["testCallbackParam"]){
|
|
$jsonp=true;
|
|
$result .= $_REQUEST['testCallbackParam'] . "('";
|
|
}
|
|
|
|
if (!$_REQUEST["message"]){
|
|
$result .= "ERROR: message property not found";
|
|
}
|
|
|
|
$result .= $_REQUEST["message"];
|
|
|
|
if ($jsonp) {
|
|
$result .= "');";
|
|
}
|
|
|
|
print $result;
|
|
|
|
|
|
?>
|