1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/tests/basic/005.phpt
Preston L. Bannister 7fa0e68dcc Fix typo in SKIP clause.
2002-05-16 16:07:47 +00:00

14 lines
284 B
PHP

--TEST--
Three variables in POST data
--SKIPIF--
<?php if (php_sapi_name()=='cli') echo 'skip'; ?>
--POST--
a=Hello+World&b=Hello+Again+World&c=1
--GET--
--FILE--
<?php
error_reporting(0);
echo "{$_POST['a']} {$_POST['b']} {$_POST['c']}"?>
--EXPECT--
Hello World Hello Again World 1