I’m sending a .php file POST data from a java application. The .php file is not accepting the POST data. file_get_contents(‘php://input’) is empty and $_POST is empty. I kno
My problem was duplicate names for an input.
ex: /input name="test" type="text" / /input name="test" type="text" /
each must have a different name ex: /input name="testA" type="text" / /input name="testB" type="text" /