I made my processor.php file so it would create the output file as a pipe delimited file so I could import into another application. It used to work so that each submission would skip to the next line with a new record for the new submission. Now all of the sudden, it's no longer going to the next line. How can I make it jump down to the next record for each subsequent submission. Below is my code for the file creation.
I made my processor.php file so it would create the output file as a pipe delimited file so I could import into another application. It used to work so that each submission would skip to the next line with a new record for the new submission. Now all of the sudden, it's no longer going to the next line. How can I make it jump down to the next record for each subsequent submission. Below is my code for the file creation.
$fileLine = "" . $_POST['field_1'] . "|" . $_POST['field_2'] . "|" . $_POST['field_3'] . "";
$filename = 'savefile.txt';
Thanks!
Buster
Ooops, I figured it out. It should have been like such:
$fileLine = "" . $_POST['field_1'] . "|" . $_POST['field_2'] . "|" . $_POST['field_3'] . "
";
$filename = 'savefile.txt';