Thank you Herve for you reply.
The problem is that the form is being created by results of a search.
The user is able to select items they have searched for, and would like to purchase. "Yes" I would like to purchase this and "No" I would not like to purchase this item. Each item has a unique number.
Here is what the page lookes like:
<form>
<?
while (database finds results from search) {
echo "Item Number $item_number:";
?>
<input type="hidden" name="item_id" value="<?echo $item_id ?>">
<input type="radio" name="purchase" value="Yes"> Yes
<input type="radio" name="purchase" value="No"> No
<? } ?>
</form>
And what the page looks like on the screen:
Your Search Results:
Item Number 1: (X) Yes ( ) No
Item Number 2: ( ) Yes (X) No
Item Number 3: (X) Yes ( ) No
Submit
But the last radio button on the list, in this case Item #3, is the only one being saved to the database on submit because as it goes through the loop (while loop) of items. I am thinking that I somehow need to be saving an array of hidden values for the item id and it's associated purchase value...
Does that make sense?
Thank You!!!!