1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/tests/basic/005.phpt

12 lines
223 B
PHP

--TEST--
Three variables in POST data
--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