Hi,
I chose to change the names to make things easier. With the new names you'll get the following array:
delete[0] = poll_id1
delete[1] = poll_id2
.....
The old one:
delete[pollid1] = 1
delete[pollid2] = 1
Ok, after thinking a second time about the code it doesn't matter which way you do it.
The main problem with your code was that you just used the array itself in the query, not the values of the array.
Besides that, you can either loop through the array and execute an update query on each key/value or use IN which is faster (just one query).
The code using the old radio button names would have been:
$delKeys = array_keys($_GET['delete']);
......IN('".implode("','",$delKeys)."')";
So the main difference is that you need one more line of code to get the poll ids if you use the old names.
Thomas