1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
<?php
if (count($HTTP_COOKIE_VARS) > 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');
?><html>
<head><title>Simple test page with links</title></head>
<body>
Simple test page with links
<h1>Links</h1>
<a href="a_page.php?action=index">Self</a>
<a href="?action=no_page">No page</a>
<a href="?action">Bare action</a>
<a href="?">Empty query</a>
<a href="">Empty link</a>
<a href=".">Current directory</a>
<a href="..">Down one</a>
<h1>Forms</h1>
<form action="a_page.php"><input type="submit" name="action" value="Self"></form>
<form action="."><input type="submit" name="action" value="Same directory"></form>
<form action=""><input type="submit" name="action" value="Empty action"></form>
<form><input type="submit" name="action" value="No action"></form>
<form action=".."><input type="submit" name="action" value="Down one"></form>
<?php include(dirname(__FILE__) . '/show_request.php'); ?>
</body>
</html>
|