now you're getting into Regular Expression territory. Regular Expressions are great, but they can be quite daunting at first.
so, if i understand you correct, then you have text input boxes with names such as:
feature12
feature147
feature589756
if this is the case, then this code would omit printing those:
foreach ($_GET as $G => $V) {
if ($G !== "submit" && !ereg("^feature([0-9])+$", $G)) {
echo $G . "<br>";
}
}
sorry, i don't really have the time to explain how that works. you will have to read up on that yourself at www.php.net
however, if you don't have any other fields in your form that start with "feature" except those which you wish to omit , then you could use something such as this:
foreach ($_GET as $G => $V) {
if ($G !== "submit" && substr($G, 0, 7) !== "feature") {
echo $G . "<br>";
}
}