Re: [PHP] Form Name Attribute Help!

2001-11-10 Thread Chris Hobbs
It doesn't appear that the name attribute is passed (ref: http://www.blooberry.com/indexdot/html/tagpages/f/form.htm). Instead, try including the following in each of your forms: input type='hidden' name='formname' value='formName1' Then you can check $formname in file.php for the value.

Re: [PHP] Form Name Attribute Help!

2001-11-10 Thread Kal Amry
Thanks guy, well I have to edit a lot of forms then :) Chris Hobbs [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... It doesn't appear that the name attribute is passed (ref: http://www.blooberry.com/indexdot/html/tagpages/f/form.htm). Instead, try including the