Welcome Guest, Not a member yet? Register   Sign In
the URL is showing twice!! really simple I think
#1

[eluser]xcodesane[/eluser]
Hello guys,
first post here, so sorry for not being too familiar with the forum. Ok so basically used the form loader:

Code:
class WebLogin extends CI_Controller {
        
    public function index(){    
        //$this->load->database();
        $this->load->helper('form');

        echo form_open('displaydetails/displayResults/');

        echo "Username : ". form_input('username', set_value('username'));
        echo "<br>Password : ". form_password('password', set_value('password'));
        echo form_submit('submit', 'Login');

        echo form_close();
  }
}

and then in the displaydetails/displayResults/ controller, I wrote simple echo:
Code:
class DisplayDetails extends CI_Controller {
        public function displayResults()
        {
        
            echo "form redirected correctly!";
        }
    }

then when I submit the login form, in the address bar the URL shows the following:

http://domainname.com/index.php/www.doma...layResults

as you can see twice the domain address is mentioned...why so? this is why I can't progress..
Thanks in advance.
K.S.A


Messages In This Thread
the URL is showing twice!! really simple I think - by El Forum - 06-09-2011, 07:54 AM
the URL is showing twice!! really simple I think - by El Forum - 06-09-2011, 08:34 AM
the URL is showing twice!! really simple I think - by El Forum - 06-09-2011, 08:52 AM
the URL is showing twice!! really simple I think - by El Forum - 06-09-2011, 08:55 AM
the URL is showing twice!! really simple I think - by El Forum - 06-09-2011, 08:55 AM
the URL is showing twice!! really simple I think - by El Forum - 06-09-2011, 08:57 AM
the URL is showing twice!! really simple I think - by El Forum - 06-09-2011, 09:01 AM
the URL is showing twice!! really simple I think - by El Forum - 06-09-2011, 11:18 PM
the URL is showing twice!! really simple I think - by El Forum - 06-10-2011, 02:17 AM



Theme © iAndrew 2016 - Forum software by © MyBB