You can employ a few methods for doing this that lets you have as many boxes as you like
<php
if (isset($_REQUEST['boxes']))
foreach($_REQUEST['boxes'] as $key => $value)
echo $key, ' = ', $value, '<br />';
?>
<form action="<?=$_SERVER['SCRIPT_NAME']?>" name="fff">
<?php
for ($i = 1; $i < 5; $i++)
{
echo '<input type="checkbox" name="boxes[]" value="', $i*10, '"><br />';
}
?>
<input name="" type="submit">
</form>
But a really good use of it is for things like deleting array elements based on their ids, e.g.
$res = mysql_query("SELECT id, name FROM sometable");
while ($row = mysql_fetch_assoc($res))
{
echo '<input type="checkbox" name="delete[]" value="', $row['id'] '"> ', $row['name'], '<br />';
//OR - as the checkbox will be set to ON, you could set the value in the index key, and not specify a value
//echo '<input type="checkbox" name="delete[', $row['id'], ']">', $row['name'], '<br />';
}