Location: A review of cardiac cellular electrophysiology models @ 1b3862589abf / dojo-presentation / js / dojo / dojox / rpc / tests / resources / jsonpEcho.phps

Author:
David Nickerson <david.nickerson@gmail.com>
Date:
2021-09-17 15:50:49+12:00
Desc:
tweak html formatting
Permanent Source URI:
https://models.fieldml.org/workspace/a1/rawfile/1b3862589abf79ae9119ee0b5e99a8b785d762e1/dojo-presentation/js/dojo/dojox/rpc/tests/resources/jsonpEcho.phps

<?php
	// ensure that we don't try to send "html" down to the client
	header("Content-Type: application/json");

	$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;


?>