<input type="checkbox" name="skill[]">
will generate an array with skill-checks. you might need to add a number to it:
<input type="checkbox" name="skill[1]">
<input type="checkbox" name="skill[2]">
as not all chackboxes are passed to the POST array, and I am not sure whether the array key increment before or after submitting the form