How to print_r $_POST array?

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

I have following table.

11条回答
  •  温柔的废话
    2020-12-31 15:36

    As you need to see the result for testing purpose. The simple and elegant solution is the below code.

    echo "
    ";
    print_r($_POST);
    echo "
    ";

提交回复
热议问题