From: "Matt Williams" <[EMAIL PROTECTED]>

> Hi
>
> Is there a way I can get the name of the form that has been posted?
>
> Looking at the form vars I don't see a name var or such in there.
>
> TIA
>
> M@


The NAME attribute of the FORM element is intended for scripting purposes
only.

But you should be able to achieve the desired effect with a hidden INPUT
element:


<form name="someform" method="POST">
<input type="hidden" name="formname" value="someform">
</form>



Cheers

Simon Garner


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to