Hi
Thanks for the prompt reply - don't think I explained very well though.
I have the first bit that you mention done. So, I have the code as follows:
<?php
$checknum = 1;
do {
?>
<tr>
<td><?php echo $row_JobListRS['JOBCAT']; ?></td>
<td width="10">
<input type="checkbox" name="checkbox<?php echo $checknum; ?>" value="<?php echo $row_JobListRS['JOBCAT']; ?>"></td>
</tr>
<?php
$checknum = $checknum + 1;
} while ($row_JobListRS = mysql_fetch_assoc($JobListRS));
?>
This gives me all the options I require and, for each, a uniquely named checkbox.
However, the part I'm having difficulty with is when a user checks 1, 2, or n boxes, how do I create a search string to search for these options, bearing in mind that there won't always be 5 (as there are now) options to choose from?
Thanks again