PHP how to loop through a post array

后端 未结 6 1154
北恋
北恋 2020-11-30 10:31

I need to loop through a post array and sumbit it.

#stuff 1



        
6条回答
  •  感动是毒
    2020-11-30 10:55

    Likely, you'll also need the values of each form element, such as the value selected from a dropdown or checkbox.

     foreach( $_POST as $stuff => $val ) {
         if( is_array( $stuff ) ) {
             foreach( $stuff as $thing) {
                 echo $thing;
             }
         } else {
             echo $stuff;
             echo $val;
         }
     }
    

提交回复
热议问题