![]() |
Paginating a form - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: Paginating a form (/showthread.php?tid=32105) |
Paginating a form - El Forum - 07-13-2010 [eluser]cpass78[/eluser] Hello, my first post so please bare with me here. I have been using CI for some weeks and building an app that is pretty extensive in nature but that i cannot go into to much detail on sadly, however I'll explain my issue. I'm building out forms that are actually "surveys" with everything relating to the form except the HTML being pulled from the db. My issue is that these forms are required to display 5 questions per page so basically i need to: query 5 rows in the db display those results in the form fill out those Q's hit the next button load the next 5 and repeat I'm not sure how to properly set my offset in the url, or wherever to be able to know how to get the next results and how to know when there are less than 5 to change the next button to a submit button. Sorry if i am vague but I'll be happy to answer any questions you have. Thanks so much Paginating a form - El Forum - 07-13-2010 [eluser]cpass78[/eluser] ok maybe posting some code would spike interest :p Here is my controller: Code: function survey($page = ''){ Calling method of Model: Code: function getSurvey($offset = '', $page = '') { Code: echo form_open('board_member/survey/'.$page); Paginating a form - El Forum - 07-14-2010 [eluser]cpass78[/eluser] Anyone have any thoughts? Paginating a form - El Forum - 07-14-2010 [eluser]cpass78[/eluser] Is this really difficult to accomplish? I know it is for myself but does no one on here have an opinion? I am here for help after all an di hear these forums are full of brilliant helpful people. Paginating a form - El Forum - 07-19-2010 [eluser]cpass78[/eluser] Bump Paginating a form - El Forum - 07-22-2010 [eluser]cpass78[/eluser] Unimpressed thus far with the interest to this topic... |