diff options
Diffstat (limited to 'test/php/post_variables/index.php')
-rw-r--r-- | test/php/post_variables/index.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/php/post_variables/index.php b/test/php/post_variables/index.php new file mode 100644 index 00000000..5ea17324 --- /dev/null +++ b/test/php/post_variables/index.php @@ -0,0 +1,6 @@ +<?php +header('Content-Length: 0'); +header('X-Var-1: ' . $_POST['var1']); +header('X-Var-2: ' . $_POST['var2'] . isset($_POST['var2'])); +header('X-Var-3: ' . $_POST['var3'] . isset($_POST['var3'])); +?> |