This is eay enough if its what I think you want, no need to remove the question its only be a day and a half.
If you're asking what I think, something along the lines of: <form method="post"> <input type="checkbox" name="option[]" value="Option 1" /> Option 1<br /> <input type="checkbox" name="option[]" value="Option 2" /> Option 2<br /> <input type="checkbox" name="option[]" value="Option 3" /> Option 3<br /> <input type="checkbox" name="option[]" value="Option 4" /> Option 4<br /> <input type="submit" value="Submit" /> </form> HTML: Then $_POST['option'] should be an array with the user's selections.