From: Rui Hirokawa Date: Sat, 23 Mar 2002 01:12:29 +0000 (+0000) Subject: fixed POST/GET argument handling. X-Git-Tag: php-4.2.0RC2~51 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3e348ed92f888b36a5d2af4c3d7cfe4a5f387290;p=php fixed POST/GET argument handling. --- diff --git a/ext/mbstring/tests/003.inc b/ext/mbstring/tests/003.inc index 944058cae3..675140726c 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');