I am not a novice. This seems very simple. But I have been going crazy last two days.
I have suddenly started facing this issue.
A simple HTML form submits GET variables to itself and to action file. However, POST method returns NULL in the action file.
HTML test.php
<html>
<body>
<form action="test2.php" method="post">
<input type="text" name="yourname"><input type="submit" name="inpsub">
</form>
</body>
</html>
PHP
var_dump($_POST)
in test2.php Returns array(0) { }
Could it be a browser issue ?