I know with this you can output to a text file on the server. Is there a way to configure it so it outputs to a text file in either a CSV or delimited format, and just keeps appending to the end of the file with each submission?
Thanks!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Looks OK to me but I think the append feature may not do what you want it to unless you open and read the old file before appending new data to the file.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
So if it's going to a file on the server, and after the form is submitted more than once, what would it do with the data other than append to the existing file. it seems to me that it only makes sense that it would append or am I confused?
Thanks!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I know with this you can output to a text file on the server. Is there a way to configure it so it outputs to a text file in either a CSV or delimited format, and just keeps appending to the end of the file with each submission?
Thanks!
Would I just setup the processor.php file like this:
$fileLine = " . $_POST['field_1'] . "," . $_POST['field_2'] . "," . $_POST['field_3'] . "
Looks OK to me but I think the append feature may not do what you want it to unless you open and read the old file before appending new data to the file.
Anything is possible but custom features require custom programming.
So if it's going to a file on the server, and after the form is submitted more than once, what would it do with the data other than append to the existing file. it seems to me that it only makes sense that it would append or am I confused?
Thanks!
The way you described it sounded like you wanted a single line of data. If you want a new line for every entry then it should be OK.