mirror of
https://github.com/php/php-src.git
synced 2024-12-19 15:00:15 +08:00
12 lines
179 B
Plaintext
12 lines
179 B
Plaintext
|
--TEST--
|
||
|
Two variables in POST data
|
||
|
--POST--
|
||
|
a=Hello+World&b=Hello+Again+World
|
||
|
--GET--
|
||
|
--FILE--
|
||
|
<?php
|
||
|
error_reporting(0);
|
||
|
echo "$a $b"?>
|
||
|
--EXPECT--
|
||
|
Hello World Hello Again World
|