so you have your checkboxes for each ticket like so...
<INPUT TYPE="checkbox" NAME="ticketnum[]" VALUE=1>
<INPUT TYPE="checkbox" NAME="ticketnum[]" VALUE=2>
<INPUT TYPE="checkbox" NAME="ticketnum[]" VALUE=3>
notice how the name is an array (ie it has [] at the end). So the user comes along a ticks the boxes for values 2, 5, 6 + 7 and submits the form to page process.php
in page process.php...
$tickets = $_POST['ticketnum'];
then, your $tickets var will be an array containing the values of the ticked boxes like so...
print_r($tickets);
// output is...
// Array(2, 5, 6, 7);
nb for further info, if you want to use this in SQL, do like this
$sql = "SELECT * FROM tickets WHERE ticketnum IN (2,5,6,7)";
hope that helps
adam