I may have found the culprit with the script. Would this be causing the rewrite? It is in the .php script that came with the tectite form.
/* Help:...
Welcome to the Tectite Forums! You can download and get support for our free PHP FormMail (form processor) and other free software.
Type: Posts; User: rwilki
I may have found the culprit with the script. Would this be causing the rewrite? It is in the .php script that came with the tectite form.
/* Help:...
Thanks Russel. So when you say append, does that mean it's supposed to overwrite the fields or add new entries below the existing fields?
Thanks,
Bob
sorry I don't think I explained myself clearly. each form submission is overwriting the same file. It's NOT creating a new file or appending the original file with new form data. I'm looking for a...
Is there a way to have the form create a sequentially numbered file like formdata.csv, formdata_1.scv, formdata_2.csv, etc... so that it doesn't keep overwriting a CSV file in my target directory? Or...
I've been using your forms for a while. And I'm very happy with the CSV output created from the php forms. The way it's working now is that each form creates another formdata.csv file in a directory...
I'm using a hidden field "csvcolumns" to output designated columns in my csv file. I have one entry question "student" that takes in a set of questions "name" "age" "gender", and I'm using javascript...
makes total sense to me. thanks so much for your help!
thank you so much for this advice... i thought it had something to do with duplicate fields, etc. i'm also using an additional hidden field for deriving the real name and email, should they all be...
thanks for your reply Ginger...
Here is the code for both text fields. Both are also set as required fields.
<input type="hidden" name="GN" value="#">
<input type="text" name="GN_N" />
<input...
@Ginger, I can't seem to use this input code again in the same form. I tried this again for another input field with different name(s) and values. But it's a required field and it's assuming that...
I'm trying to use some ajax script that adds new fields by clicking on a button. It works fine, but it's not saving the data correctly.
I'm trying to have a default field set of
Name:
Age:...
worked like a charm!!!! thanks.
I'm trying to merge two text input fields or at least have one value passed to the next field but within the same form... Is there a way to do this?
ie.
field 1 value: $
field 2 value: 555
...
i believe notepad comes free with all windows pc's...
I have a text field that collects a number and a name. I guess I could split it into two fields, one collecting a number and one collecting a name. But if I wanted to somehow hard code in a prefix...
In theory, I know how to make any form element a required item. My question is two-fold:
1) I'm going to have 3 choices of check boxes, for example, it could be [ ] dog, [ ] cat, or [ ] other....
Oatmeal is right on. If you set Dreamweaver not to rewrite or reorganize your tags and code, it's perfectly fine to use in code view. I prefer textwrangler because it's easier to browse the code and...
Is there a way to make a text field pre-populated, and uneditable?
thanks,
Bob
my customer asked if I would make the zip code field a "text" field. how do I do this?
Thanks for your advice. Actually, I think the "0"s are removed by excel not by the form...
Turns out that the filters with mail_options is the bomb! Works great now and the delivery method for the CSV achieves identical results. Thanks for your help.
Thanks for your reply. I know I want all the fields in the CSV file, so I don't think the filter is necessary. As far as the "mail options" I thought I had that set already. I'll check and thanks for...
Hi. I'm using these hidden fields in my formmail form.
<input type="hidden" name="filter" value="csv" />
<input type="hidden" name="filter_options" value="Attach=formdata.csv" />
Is there a...
Thanks for your reply. I've looked through the Tectite filters instructions and not sure I need to filter the data. The CSV file attachment is fine. It has the header fields and whatever data the...
i've got everything working great in my form. Was getting close to unveiling it to my customer and I realized that the form is stripping "0" (zeros) off the first number in my zip codes. Obviously,...