Jump to content

Referencing Form name


stmosaic

Recommended Posts

I know this may be a newbie question, but it is something I've been unable to find an answer to. I have a form, name attribute is accom and I wish to reference that forn name in a script that does certain things depending on what the form name is.
[code]<form action="http://www.domain.com/forms/processor.php" method="POST" name="Accom">[/code]

Now, to refer to this particular form, is it: [code]$formname = $_POST['Accom'];[/code] ?

I would appreciate any enlightenment about this! [img src=\"style_emoticons/[#EMO_DIR#]/smile.gif\" style=\"vertical-align:middle\" emoid=\":smile:\" border=\"0\" alt=\"smile.gif\" /]
Link to comment
Share on other sites

Most browsers wont send the form name. You'll need to duplicate the form name in a hidden field and get it from there. eg;
[code]
<input type="hidden" name="formname" value="Accom">
[/code]
[code]
if ($_POST['formaname'] == "Accom") {
  // do something;
}
[/code]
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.