When I test php post method, I face some problem. The server will always return 404 error. I don't know if it is the problem of my configuration. But when I turn it onto get method, I can get all the parameters I want.
My environment is : phpstorm+xampp
<html>
<body>
<form method="post">
Name: <input type="text" name="name"><br>
E-mail: <input type="text" name="email"><br>
<input type="submit">
Welcome <?php echo $_POST["name"]; ?><br>
Your email address is: <?php echo $_POST["email"]; ?>
</form>
</body>
</html>