What is the most simplist way to generate reports in Codeigniter framework? Is there any library available to do this task? Except charting what are the other resources to do this.
What is the most simplist way to generate reports in Codeigniter framework? Is there
Share
Found a nice solution myself. If you want to generate reports in csv format it is very easy with codeigniter.
Your model function
Now in controller
No externals are required everything is available in codeigntier. Cheers!
If you want to write xml file it is easy too.
Just use
xml_from_result()method of dbutil and usewrite_file('xml_file.xml,$new_report)Visit these links they will help.
Database Utility Class
And
File Helper