You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
284 B

--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