How to print_r $_POST array?

前端 未结 11 2107
我在风中等你
我在风中等你 2020-12-31 14:39

I have following table.

11条回答
  •  醉梦人生
    2020-12-31 15:32

    You are adding the $_POST array as the first element to $myarray. If you wish to reference it, just do:

    $myarray = $_POST;
    

    However, this is probably not necessary, as you can just call it via $_POST in your script.

提交回复
热议问题