PhpStorm $_POST always empty
$_POST seems that does not work. I've installed PhpStorm 10.0.3, and using the WAMP server default php interpreter. in the index.php: <form method='post' action='a.php'> <input type='text' name='user_f'> <input type='submit' name='send' value='Send'> </form> In the a.php: var_dump($GLOBALS); when I type "asdf" in the form: array (size=9) 'HTTP_RAW_POST_DATA' => string 'user_f=asdf&send=Send' (length=22) '_GET' => array (size=0) empty '_POST' => array (size=0) empty '_COOKIE' => array (size=0) empty '_FILES' => array (size=0) empty '_ENV' => array (size=0) empty '_REQUEST' => array (size=0) $