|
| A R C H I V E D M E S S A G E |
|
Subject: why does it go back to the sample form?... |
| Posted: 07/26/2004 at 7:34:28 pm |
| By: Julia |
| Hi, Seth!
I seem to have another problem, could you help please?...
I configured my own form to work with BizMail, it sends all the information and everything works. But then, if I change Text Field names on the form from, say, "firtname" to "First Name" and then upload it and test it, after I fill in all the required fields and click "Submit" it shows the error as if I was filling in the form that came with the BizMail package, and it shows the empty fields in that form and asks to complete that form and submit again... But I was filling in my form, not that one... I can't undertand why it's doing that, cuz I didn't change anything else except for the text fields names and before that my form worked...
Can you see what I'm doing wrong?... Can you help me with that?
Any help wouild be greatly appreciated, cuz I'm not that much of a programmer, so I'm confused...
Thanks for your time.
Julia | |
|
|
Subject: Re: why does it go back to the sample form?... |
| Posted: 07/26/2004 at 7:47:01 pm |
| By: Seth Knorr |
| The problem is a general one. When using input text fields you don't want to use spaces. This will always create major problems IN GENERAL, with any scripting.
Always use something like:
<input type="text" name="First_Name">
THE BELOW EXAMPLE GENERALY WILL NOT WORK.
<input type="text" name="First Name">
Seth | |
|
|
Subject: Re: why does it go back to the sample form?... |
| Posted: 07/26/2004 at 8:32:31 pm |
| By: Julia |
| Hi again!
thanks for a quick response, but I still have a problem, cuz I changed all the fields to the form "FirstName", but it still does that... I don't know how to fix that... can there be anything else?...
thanks again for help | |
|
|
Subject: Re: why does it go back to the sample form?... |
| Posted: 07/27/2004 at 5:57:38 am |
| By: Seth Knorr |
| where is your HTML form located at?
Seth
| |
|
|
Subject: Re: why does it go back to the sample form?... |
| Posted: 07/27/2004 at 3:40:21 pm |
| By: Julia |
| It's located at
http://findlostcomputer.com/FindComp/5Contact/contactv3form.html
| |
|
|
Subject: Re: why does it go back to the sample form?... |
| Posted: 07/27/2004 at 7:55:20 pm |
| By: Seth Knorr |
| You need to change the form field: name="Email"
TO
name="email"
Which is case sensitive, once you do this you should be all set.
Seth | |
|
|
Subject: Re: why does it go back to the sample form?... |
| Posted: 07/28/2004 at 7:52:44 pm |
| By: Julia |
| It works :)
Thanks A LOT for help!
Julia | |
|
|