PHP Loop through form values

前端 未结 3 1575
清酒与你
清酒与你 2021-01-29 12:02

I have a form that submits lots of small fields that I need to loop through and perform actions on.

The form looks like this:



        
3条回答
  •  心在旅途
    2021-01-29 12:28

    You can loop over $_POST and read the values: http://www.php.net/manual/en/reserved.variables.post.php

    foreach($_POST as $key =>$value){
        // do something using key and value
    }
    

提交回复
热议问题