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

1.1       misho       1: --TEST--
                      2: POST Method test and arrays - 3 
                      3: --POST--
                      4: a[]=1&a[0]=5
                      5: --FILE--
                      6: <?php
                      7: var_dump($_POST['a']); 
                      8: ?>
                      9: --EXPECT--
                     10: array(1) {
                     11:   [0]=>
                     12:   string(1) "5"
                     13: }

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