the radio buttons with the same name will only allow you to choose one value from it. so if you label them all with the same name, only one choice will be made

so, each row has to have a diff radio button set name
<tr>
<td><input type="radio" name="row1" value="and"><...put or here here ..></td>
</tr>
<tr>
<td><input type="radio" name="row2" value="and"><...put or here here ..></td>
</tr>
....
you don't need getParameterValues() for radio buttons, only for multiple entries..
so assuming the rows are labeled in sequential order (if there is no value, i'm done)...
this should retrieve what you need
String and_or;
for (int i = 1; (and_or = request.getParameter("row"+i)) != null ;i++){
//and_or is set to whatever it is, and or or hehe
}
hope that helps a tad!
if not, i'll go hide now.
[This message has been edited by Danny Mui (edited January 23, 2001).]
[This message has been edited by Danny Mui (edited January 23, 2001).]