views:

116

answers:

2

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.

+2  A: 

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.

soulmerge
+1  A: 

Seems like something you could do through the Google Docs Spreadsheet API.

acrosman