post checkbox value

前端 未结 4 1191
无人共我
无人共我 2020-12-08 04:19

I want to post values of check boxes on booking.php page.

There are many checkboxes on the page but I don\'t know how to post on booking.php page.

4条回答
  •  轮回少年
    2020-12-08 05:19

    In your form tag, rather than

    name="booking.php"
    

    use

    action="booking.php"
    

    And then, in booking.php use

    $checkValue = $_POST['booking-check'];
    

    Also, you'll need a submit button in there

    
    

提交回复
热议问题