Hi,
i currently have a form which can have any number of unknown form values in it. for instance:
<input name="status_[% bugid FILTER html %]" type="radio" value="pass">
So one time there may be 2 sets of radio buttons with names:
status_37
status_65
Another time they might be:
status_9
status_15
I have a list of the different IDs needed seperated by "," ie:
ids = 37,65,
ids = 9,15,
a) How can i break down the comma seperated list of ids into an array of ids
b) How can i get the values of the radio buttons?
cheers
i currently have a form which can have any number of unknown form values in it. for instance:
<input name="status_[% bugid FILTER html %]" type="radio" value="pass">
So one time there may be 2 sets of radio buttons with names:
status_37
status_65
Another time they might be:
status_9
status_15
I have a list of the different IDs needed seperated by "," ie:
ids = 37,65,
ids = 9,15,
a) How can i break down the comma seperated list of ids into an array of ids
b) How can i get the values of the radio buttons?
cheers