Page 1 of 1

CSV file

Posted: Thu Mar 23, 2017 9:32 pm
by alex4orly
Is it possible to use as a flat file a CSV instead of the vertical bar separated values
If so, how do I do that?

Cheers

Re: CSV file

Posted: Thu Mar 23, 2017 9:35 pm
by Pablo
There is no standard solution for this, this will require a modification in the generated code.

Re: CSV file

Posted: Tue Mar 28, 2017 11:51 pm
by alex4orly
OK, which file do I need to look into?

Re: CSV file

Posted: Wed Mar 29, 2017 5:58 am
by Pablo
You can start by copying the generated script and include your own version (so disable the built-in form processor).

Re: CSV file

Posted: Wed Mar 29, 2017 6:56 am
by alex4orly
Yes, but is the generated PHP code in the file of that page, or is it generated into another PHP file?

Re: CSV file

Posted: Wed Mar 29, 2017 7:30 am
by Pablo
If you use the built-in form processor then the code will be in the same page (at the start).
If you are going to implement your own script then it can either be in the same page or a different page.
Just make sure the 'action' field of the form point to the right file!

Re: CSV file

Posted: Wed Mar 29, 2017 7:46 am
by alex4orly
Got it, Thnaks