This content has been marked as final.
Show 3 replies
-
1. Re: Fields iout of Order from form submission
Newsgroup_User Mar 28, 2008 3:29 AM (in response to INVT)If you're formmail version is 1.4 or higher, you can add a sort field:
gatherForm.recipient = "invtech@drmammano.com";
gatherForm.name = contactForm.userName.text;
gatherForm.address = contactForm.userAddress.text;
gatherForm.city = contactForm.userCity.text;
gatherForm.state = contactForm.userState.text;
gatherForm.zip = contactForm.userZip.text;
gatherForm.select = contactForm.userSelect.text;
gatherForm.phone = contactForm.userPhone.text;
gatherForm.email = contactForm.userEmail.text;
gatherForm.comments = contactForm.userComments.text;
gatherForm.sort =
"order:name,address,city,state,zip,select,phone,email,comments";
gatherForm.send("../cgi-bin/formmail.pl","_blank","POST");
More info: http://www.scriptarchive.com/readme/formmail.html#sort
-
2. Re: Fields iout of Order from form submission
INVT Mar 28, 2008 10:23 AM (in response to Newsgroup_User)Thanks worked great.
INVT -
3. Re: Fields iout of Order from form submission
Newsgroup_User Mar 28, 2008 11:05 AM (in response to Newsgroup_User)You're welcome

