0) {
$_COOKIE = $HTTP_COOKIE_VARS;
}
if (count($HTTP_GET_VARS) > 0) {
$_GET = $HTTP_GET_VARS;
}
if (count($HTTP_POST_VARS) > 0) {
$_POST = $HTTP_POST_VARS;
}
if (!isset($_SERVER)) {
$_SERVER = $HTTP_SERVER_VARS;
}
global $HTTP_RAW_POST_DATA;
require_once('../page_request.php');
?>
Simple test target file in folder
A target for the SimpleTest test suite.
Request
- Protocol version
- Request method
- Accept header
Cookies
0) {
foreach ($_COOKIE as $key => $value) {
print $key . "=[" . $value . "]
\n";
}
}
?>
Raw GET data
GET data
0) {
foreach ($get as $key => $value) {
if (is_array($value)) {
$value = implode(', ', $value);
}
print $key . "=[" . $value . "]
\n";
}
}
?>
Raw POST data
POST data
0) {
foreach ($_POST as $key => $value) {
print $key . "=[";
if (is_array($value)) {
print implode(', ', $value);
} else {
print $value;
}
print "]
\n";
}
}
?>