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
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