Hi,
I think you can work this easier by using arrays. But as mentioned by justsomeone, it is hard to say, without knowing what you need to do.
Anyway..
In your form, name the fields of one 'category' the same. So your a, b, c, d varas would all be:
<input type=text name=INFO[] value=YOURVALUE> input a
<input type=text name=INFO[] value=YOURVALUE> input b
<input type=text name=INFO[] value=YOURVALUE> input c
<input type=text name=INFO[] value=YOURVALUE> input d
Then, in the processing form:
$info = $_request[info];
Foreach($info as $key => value)
{
echo $value;
}
// or:
echo $info[0];