2006-09-30 16:34:49 +02:00
|
|
|
<?php
|
|
|
|
$wait = $_REQUEST['wait'];
|
|
|
|
if($wait) {
|
|
|
|
sleep($wait);
|
|
|
|
}
|
|
|
|
$xml = $_REQUEST['xml'];
|
|
|
|
if($xml) {
|
|
|
|
header("Content-type: text/xml");
|
|
|
|
eval("\$result = $xml;");
|
|
|
|
echo "<math><calculation>$xml</calculation><result>$result</result></math>";
|
|
|
|
die();
|
|
|
|
}
|
|
|
|
$name = $_REQUEST['name'];
|
|
|
|
if($name == 'foo') {
|
|
|
|
echo "bar";
|
|
|
|
die();
|
|
|
|
} else if($name == 'peter') {
|
|
|
|
echo "pan";
|
|
|
|
die();
|
|
|
|
}
|
2006-12-04 21:42:38 +01:00
|
|
|
$request = apache_request_headers();
|
2006-12-05 23:58:27 +01:00
|
|
|
$request = $request['X-Custom-Header'];
|
2006-12-04 21:42:38 +01:00
|
|
|
if(strlen($request) > 0) {
|
|
|
|
echo $request;
|
|
|
|
die();
|
|
|
|
}
|
2006-11-21 10:55:34 +01:00
|
|
|
echo 'ERROR <script type="text/javascript">ok( true, "name.php executed" );</script>';
|
2006-09-30 16:34:49 +02:00
|
|
|
?>
|