How to print_r $_POST array?

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

I have following table.

11条回答
  •  失恋的感觉
    2020-12-31 15:25

    Came across this 'implode' recently.

    May be useful to output arrays. http://in2.php.net/implode

    echo 'Variables: ' . implode( ', ', $_POST);
    

提交回复
热议问题