From 4e494746c178cb575c4e296949e163c635afb307 Mon Sep 17 00:00:00 2001 From: Rui Hirokawa Date: Thu, 21 Mar 2002 13:44:39 +0000 Subject: [PATCH] fixed POST/GET input processing. --- ext/mbstring/tests/003.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/mbstring/tests/003.inc b/ext/mbstring/tests/003.inc index e351085845..b6a6d3e9a4 100644 --- a/ext/mbstring/tests/003.inc +++ b/ext/mbstring/tests/003.inc @@ -8,8 +8,8 @@ $ini = ini_get('mbstring.http_input'); // It must be url encoded.... // echo vars -echo "$a\n"; -echo "$b\n"; +echo $_POST['a']."\n"; +echo $_GET['b']."\n"; // Get encoding $enc = mb_http_input('P'); -- 2.40.0