FLAT FILE SETTINGS
(Database Support)
$datafile{""}
Simply enter all the possible data files where you would like to send form data.
Example Config:
$datafile{"1"} = "bizmail.dat";
$datafile{"2"} = "secondfile.dat";
$datafile{"3"} = "etc.dat";
For example, if you want to use bizmail.dat as your data file, then format the “data file” field on the form as follows:
<input name="datafile" type="hidden" value="1">
-OR- -If you want to use secondfile.dat as your data file, then format the “data file” field on the form as follows:
<input name="datafile" type="hidden" value="2">
Please note: You can have as many $datafile{""} entries as you would like in bizmail.cgi
IF YOU LEAVE THIS FIELD OUT OF THE FORM IT WILL DEFAULT TO bizmail.dat
$send_data_results
set $send_data_results = "2"; to not send form results to the data file (DEFAULT). Set $send_data_results = "1"; to send form results to the data file.