You've already forked postfixadmin
mirror of
https://github.com/postfixadmin/postfixadmin.git
synced 2026-01-14 12:02:20 +03:00
git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@581 a1433add-5e2c-0410-b055-b7f2511e0802
21 lines
662 B
PHP
21 lines
662 B
PHP
<?php
|
|
if (count($HTTP_GET_VARS) > 0) {
|
|
$_GET = $HTTP_GET_VARS;
|
|
}
|
|
?><html>
|
|
<head><title>Test of form self submission</title></head>
|
|
<body>
|
|
<form>
|
|
<input type="hidden" name="secret" value="Wrong form">
|
|
</form>
|
|
<p>[<?php print $_GET['visible']; ?>]</p>
|
|
<p>[<?php print $_GET['secret']; ?>]</p>
|
|
<p>[<?php print $_GET['again']; ?>]</p>
|
|
<form>
|
|
<input type="text" name="visible">
|
|
<input type="hidden" name="secret" value="Submitted">
|
|
<input type="submit" name="again">
|
|
</form>
|
|
<!-- Bad form closing tag --></form>
|
|
</body>
|
|
</html>
|