get multiple values from $_GET from multiple checkboxes

Use brackets in the name attribute:

'<input type="checkbox" name="t[' . $term->name . ']"  value="1">

Then get the keys with:

array_keys( $_GET['t'] );

See also: Settings API with arrays example