php script to log the raw data of POST

前端 未结 4 1722
Happy的楠姐
Happy的楠姐 2020-12-09 12:54

I am sending data using HTTP POST to my server. But in the server, I am not receiving the data. And somehow I don\'t have any way to check the data (or debug script) on clie

4条回答
  •  不思量自难忘°
    2020-12-09 13:37

    try using var_dump($_POST['name-of-field']) or var_dump($_POST)

    updated:// and browse the source of the page and look for an array

提交回复
热议问题