submitting a GET form with query string params and hidden params disappear

前端 未结 10 665
庸人自扰
庸人自扰 2020-11-22 02:22

Consider this form:

10条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-22 03:24

    What you can do is using a simple foreach on the table containing the GET information. For example in php :

    foreach ($_GET as $key => $value) {
        echo("");
    }
    

提交回复
热议问题