Request method is GET instead of POST
This happens 'seemingly' randomly but quite often (about 1 in 50 requests).
When a form is posted (form method is 'POST') the server starts the request as 'GET' (in PHP $_SERVER['REQUEST_METHOD'] returns 'GET').
Of course, the result is that $_POST array is empty.
Please help, I have had this issue for years and I have no clue where it's coming from.
When a form is posted (form method is 'POST') the server starts the request as 'GET' (in PHP $_SERVER['REQUEST_METHOD'] returns 'GET').
Of course, the result is that $_POST array is empty.
Please help, I have had this issue for years and I have no clue where it's coming from.