1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 09:42:22 +01:00
Files
archived-php-src/tests/basic/005.phpt
Marcus Boerger eb53114d5e MFH (skip if cli)
#no NEWS for changing tests
2002-08-24 13:06:57 +00:00

14 lines
284 B
PHP

--TEST--
Three variables in POST data
--SKIPIF--
<?php if (php_sapi_name()=='cli') print '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