getting multiple checkboxes names/id's with php

前端 未结 4 522
不思量自难忘°
不思量自难忘° 2020-11-30 06:59

How can i get the names or id\'s of the multiple selected checkboxes on submit, using the PHP? Following is example form. Thanks.

4条回答
  •  感动是毒
    2020-11-30 07:34

    You need to give the inputs the same name:

    
    
    
    
    

    Then iterate over the $_POST['selection'] array in PHP.

提交回复
热议问题