help require for redirecting |
[eluser]doforumda[/eluser]
Hi, I am new to codeigniter and making a login script in CI. When user successfully logs in then I want him to be redirected to home function inside this controller. But the problem is that it displays this error Code: The requested URL /sign_in/home was not found on this server. here is my code. This is sign_in.php page or controller Code: class Sign_in extends CI_Controller { Code: $('#signin_form').submit(); Code: <form id="signin_form" class="in_up_forms" name="signin_form" action="<?php echo base_url(); ?>sign_in/home" method="post">
[eluser]tomcode[/eluser]
Use site_url() instead of base_url() Code: <?php echo site_url('sign_in/home'); ?>
[eluser]doforumda[/eluser]
tomcode thanks it works but the problem is with url now. It displays this url Code: .../index.php/sign_in/[email protected]&signin_password=123456 .../index.php/sign_in/home
[eluser]doforumda[/eluser]
its ok thanks i just changed method='post' so now it works. |
Welcome Guest, Not a member yet? Register Sign In |