Get $_POST from multiple checkboxes

前端 未结 5 1378
醉酒成梦
醉酒成梦 2020-11-22 01:03

I have 1 form in with multiple checkboxes in it (each with the code):



        
5条回答
  •  心在旅途
    2020-11-22 01:19

    Set the name in the form to check_list[] and you will be able to access all the checkboxes as an array($_POST['check_list'][]).

    Here's a little sample as requested:

提交回复
热议问题