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.
booking.php
You should use
inside your form.
form
and add action into your form tag for example:
action
It's post your form into action which you choose.
From php you can get this value by
$_POST['booking-check'];