Skirby almost got it. Not quite though. Input tags don't have an ending tag. They are standalone. Also, you're going to want to give each one a unique name. In the code below you'll send three values for $test, but it's going to use the last one, since it was set last. So, if you check "test 1" and "test 3", $test == 3. Use it like this:
<form action="somepage.php" method="post">
Test 1: <input type="checkbox" name="test1" value="checked">
Test 2: <input type="checkbox" name="test2" value="checked">
Test 3: <input type="checkbox" name="test3" value="checked">
<input type="submit">
Now, you'll have vars called $test1, $test2, and $test3, and if they are checked they will be equal to "checked". You could have it equal anything you want, by the way, i.e. "1", "true", "on"... whatever.