Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php/php-7.3.8/tests/basic/
Upload File :
Current File : //hdd/hdd21/main/php/php-7.3.8/tests/basic/003.phpt

--TEST--
GET and POST Method combined
--POST--
a=Hello+World
--GET--
b=Hello+Again+World&c=Hi+Mom
--FILE--
<?php
error_reporting(0);
echo "post-a=({$_POST['a']}) get-b=({$_GET['b']}) get-c=({$_GET['c']})"?>
--EXPECT--
post-a=(Hello World) get-b=(Hello Again World) get-c=(Hi Mom)