PHP Settings? PHP not receiving POST data

后端 未结 5 891
天涯浪人
天涯浪人 2020-12-20 21:36

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

5条回答
  •  死守一世寂寞
    2020-12-20 22:05

    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" /

提交回复
热议问题