[PHP] Re: Variables - Using The Contents Of A Varibale Name Built Dynamically

2002-06-02 Thread Michael Davey
> Won't that treat all radio buttons on the page as one group, instead of > being separate groups for each form? No - the tags "enclose" the data that is being submitted - nothing outside of the tags will reach the script that handles the request. Mikey -- PHP General Mailing List (http://w

[PHP] Re: Variables - Using The Contents Of A Varibale Name Built Dynamically

2002-06-02 Thread Jason Teagle
"Michael Davey" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > You could give the button the same name in each form - only the fields in > between the tags is actually submitted, then put a hidden field > in the form that uniquely identifies the data being s

[PHP] Re: Variables - Using The Contents Of A Varibale Name Built Dynamically

2002-06-01 Thread Michael Davey
You could give the button the same name in each form - only the fields in between the tags is actually submitted, then put a hidden field in the form that uniquely identifies the data being submitted. Just a thought... it is what I usually do... Mikey "Jason Teagle" <[EMAIL PROTECTED]> wrote i