Annotation of embedaddon/php/ext/filter/tests/002.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: GET test with 2 values and an empty one
                      3: --GET--
                      4: a=1&b=&c=3
                      5: --FILE--
                      6: <?php echo $_GET['a'];
                      7: echo $_GET['b']; 
                      8: echo $_GET['c'];
                      9: ?>
                     10: --EXPECT--
                     11: 13

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