Click here to Skip to main content
15,904,024 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:

JavaScript

I have prepared an html form (with 16 fields...name address etc.) which will be uploaded and reside on my rented web server. Clients will enter my URL, fill out the form and submit. How can I retrieve this, basically flat file data, from the web server after the clients have submitted the data? I want to retrieve it in CSV format, or be able to easily convert it to CSV format.

I would be happy to buy a book or study several tutorials to learn what to do. Can you point me in the right direction.

Ed

What I have tried:

I have looked on line for articles and books that would guide me.
Posted
Updated 31-Mar-18 14:52pm

1 solution

Why couldn't you just have an admin URL that downloads the file directly through the website?

A CSV file is just a text file, one record per line with a delimiter character between fields, usually a tab or comma, but can be other characters like |, with string fields enclosed in double quotes.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900