I'm a relative novice with this stuff so please pardon my ignorance, but I'm a little lost on how to proceed.
Collect values of text, select, and checkbox inputs on an HTML form.
Store this information as a CSV.
Submit it to a file input field on an external page.
I'm relatively comfortable adding the form values to an array with unShift() and then converting that to a comma separated string with .toString(), .valueOf() or join(). However, I'm at a total loss how to encode that resulting string properly, and even more at a loss as to how to submit that file to an upload input on another page.
I need to do this totally client-side.
Right now I have the provided endpoint URL with the file upload input as the form action, with a post method, but I think I may need to point the form at a script to get this done. Is this totally ass backwards?