Reputation: 10117
I'm trying to find something already made (hopefully) or some tips on where to start, but what I need to accomplish is take an existing csv file, load it into a html table, be able to edit it, or add duplicate rows, then save my edited version as a new csv file.
Upvotes: 0
Views: 202
Reputation: 75724
The single most important thing is: Don't try to parse the file yourself! There are builtin functions for csv handling in PHP. The example in the manual can be easily altered to fit your needs.
Upvotes: 2
Reputation: 12900
Seems like something you could do through the Google Docs Spreadsheet API.
Upvotes: 1