CodeIgniter Forums
Problem about change URL ? - 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: Problem about change URL ? (/showthread.php?tid=8674)



Problem about change URL ? - El Forum - 05-27-2008

[eluser]MrSmith[/eluser]
I create the form view (called mainpage.php) to input data from users and insert to database (When load this page the URL is http://localhost/index.php/). After I pass the data to controller (method postdata) - the url is http://localhost/index.php/postdata, I want to load mainpage view again. The url should be http://localhost/index.php/ but it is not change so if I refresh this webpage in this state it will insert old data from last input to database again. Please help me how to correct them...T_T


Problem about change URL ? - El Forum - 05-27-2008

[eluser]poji23[/eluser]
Well if your index controller was called "web", then you can use the redrect method.

Code:
redirect('web');

Just don't forget to include the helper.


Problem about change URL ? - El Forum - 05-27-2008

[eluser]MrSmith[/eluser]
Thank you very much for your helping :lol: