![]() |
need to change the select option in one view based on value of input text of another view - 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: need to change the select option in one view based on value of input text of another view (/showthread.php?tid=59847) |
need to change the select option in one view based on value of input text of another view - El Forum - 11-27-2013 [eluser]Unknown[/eluser] need to change the select option data in one view based on value of input text of another view Code: // view1 which i need to pass the value of add and question fields to view 2 Code: // view 2 how to do that need to change the select option in one view based on value of input text of another view - El Forum - 11-28-2013 [eluser]Tpojka[/eluser] Check this one (there is demo too). need to change the select option in one view based on value of input text of another view - El Forum - 11-29-2013 [eluser]umagrama[/eluser] User a html form for view_1 and then post it to the view_2. Then in view_2 you can retrieve the data from the $_POST. Hope it helps. |