I use PHP 5.6 and PHPstorm 10.
html code following.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>test</title>
</head>
<body>
<form action="hello.php" method="post">
<input type="text" name="blabla">
<input type="submit">
</form>
</body>
</html>
PHP code following .
<?php
echo $_POST["blabla"];
?>
But if I change the method to GET
.
It will be work. But I can not get the post value.
Then I install WAMP Server.when just use WAMP Server to access,it worked.why?why I can not use PHPStorm to get the post value.