- I have a CSV file containing data for all User interaction with my web app.
- I want to represent this data in teh from of tables(stats) and stats.
- Can anyone suggest me a tool or an API to achieve this?
- A standalone tool or a PHP/JS library would work for me.
Asked
Active
Viewed 335 times
0

Brian Tompsett - 汤莱恩
- 5,753
- 72
- 57
- 129
-
you want to csv data import to db table am i right? – Abid Hussain Aug 13 '12 at 19:06
-
No actually I want to represent the data in the from of tables and reports so that I can know who clicked what in my web app how many times – Aug 13 '12 at 19:08
1 Answers
1
For your grids (Tables)
- http://www.datatables.net/index
- List: https://stackoverflow.com/questions/159025/jquery-grid-recommendations
For your charts:
For the stats:
- Use simple math like var1+var2/100
- or more elaborate: https://github.com/jstat/jstat
For the CSV data store:
- Use PHP http://php.net/manual/de/function.fgetcsv.php
- or use javascript to parse it: Javascript code to parse CSV data