![]() |
How to build a CodeIgniter survey application - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24) +--- Thread: How to build a CodeIgniter survey application (/showthread.php?tid=61838) |
How to build a CodeIgniter survey application - Wouter60 - 05-23-2015 My plan is to build a CI survey application. The basic requirements are:
My biggest question is: how does the data model look like for an application like this? Which tables and fields, and which relationships between tables? And how do I cope with questions that can have multiple answers (like in a set of checkboxes)? I want to make a good plan for this before I start. And not get stranded half way. Maybe there are good examples available that I can learn from? Any help is appreciated. RE: How to build a CodeIgniter survey application - Lolivaress - 05-23-2015 Don't reinvent the wheel https://www.limesurvey.org/en/ RE: How to build a CodeIgniter survey application - Wouter60 - 06-21-2015 (05-23-2015, 06:21 PM)Lolivaress Wrote: Don't reinvent the wheel https://www.limesurvey.org/en/ I am familiar with LimeSurvey and it's great. But I want to implement a survey application within my own CodeIgniter applications. LimeSurvey is way too heavy for that. Compared to CI, it has a tremendous footprint (CI takes only a few MB's, LimeSurvey 128 MB). No doubt there's a lot to learn from the way LimeSurvey is set up. One important thing for me was how to store questions and answers in the database. Having LimeSurvey as a good example could be very useful. So thanks for the tip. |