![]() |
Redirect to a control using button - 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: Redirect to a control using button (/showthread.php?tid=50311) |
Redirect to a control using button - El Forum - 03-22-2012 [eluser]Unknown[/eluser] I have a button on a view, and the feature I want is that the button will redirect the user to another page(a function in another controller) when clicked. How to do that? Thanks in advance for your help. Redirect to a control using button - El Forum - 03-22-2012 [eluser]InsiteFX[/eluser] CodeIgniter Users Guide - URL Helper anchor tag Redirect to a control using button - El Forum - 03-22-2012 [eluser]PhilTem[/eluser] I wouldn't suggest reading the CI user's guide yet reading an HTML and PHP beginner's guide! Redirect to a control using button - El Forum - 03-24-2012 [eluser]xtremer360[/eluser] Code: <a href="/controller/function">Link Text</a> |