Annotation of embedaddon/php/tests/basic/003.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: GET and POST Method combined
                      3: --POST--
                      4: a=Hello+World
                      5: --GET--
                      6: b=Hello+Again+World&c=Hi+Mom
                      7: --FILE--
                      8: <?php 
                      9: error_reporting(0);
                     10: echo "post-a=({$_POST['a']}) get-b=({$_GET['b']}) get-c=({$_GET['c']})"?>
                     11: --EXPECT--
                     12: post-a=(Hello World) get-b=(Hello Again World) get-c=(Hi Mom)

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>