1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 17:08:14 +02:00
Files
Marcus Boerger eb53114d5e MFH (skip if cli)
#no NEWS for changing tests
2002-08-24 13:06:57 +00:00

14 lines
263 B
PHP

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