Hello All,
I used a for loop to create a set of radio buttons.
For example:
for($i = 1; $i < 4; $i++)
{
print '<INPUT TYPE="radio" NAME="first" VALUE=$i >', " $i|";
}
My question is how do I display which radio button was chosen if all of them have the same value of $i.
Any help would be appreciated.
Thanks