Hi Norman,
I get your point.
I realized that checkboxes cannot be used for my list as there can only be a single selection.
Using the example you have provided,
<input type="radio" value="yes" name="icecream">Yes</input>
<input type="radio" value="no" name="icecream">no</input>
<input type="radio" value="only strawberry" name="icecream">only strawberry</input>
<input type="radio" value="only chocolate" name="icecream">only chocolate</input>
The values which you have inserted is unique to itself, whereas i am using a variable, $a, that is pretty much on a global level, thus affecting all the other radio buttons, such that when my while loop executes, the radio button codes will look like tis i think...
<input type="radio" value=$a name="icecream">Yes</input>
<input type="radio" value=$a name="icecream">no</input>
<input type="radio" value=$a name="icecream">only strawberry</input>
<input type="radio" value=$a name="icecream">only chocolate</input>
The value, $a, itself is ever-changing, according to the results taken from the while loop. My main concern is how to lock on the individual value for every new radio button generated and prevent the last result taken from the loop to overwrite all the other results drawn?
Thank you for your time! 🙂
Cheers
t-bonist