I have a table displaying data from multiple sources, about half from a MySQL DB and half returned as a JSON object from an API. It's then formatted into a multi-dimensional array and passed into a CI view where the table is created from it (~10-200 rows generally).
CodeIgniter has nice options for just MySQL data, specifically dbtuil and the csv_from_result() function, but that's for SQL output only. Perhaps I can use some combination of the Download Helper CI class and the jQuery plugin recommended in this thread? The thread is about a year old, is that still the best solution for my case?