Welcome Guest, Not a member yet? Register   Sign In
(SOLVED)Need Login Help using Erkanaauth
#4

[eluser]ontguy[/eluser]
Code:
$username = array(
              'username'    => 'username',
              'maxlength'   => '10',
              'size'        => '25',
            );

should be the following, to give the input a proper name and adding the validated value in case of an error:
Code:
$username = array(
              'name'    => 'username',
              'value'    => $this->validation->username,
              'maxlength'   => '10',
              'size'        => '25',
            );

Is admin/index the uri that loads the admin login?
Do the views header.php and footer.php exists?

Is a particular reason you are assigning the view to a variable when it is not setup to return a string; it maybe functionality you'll add in the future?
Code:
$data['header'] = $this->load->view('header', '');


Messages In This Thread
(SOLVED)Need Login Help using Erkanaauth - by El Forum - 06-27-2008, 07:29 AM
(SOLVED)Need Login Help using Erkanaauth - by El Forum - 06-27-2008, 12:25 PM
(SOLVED)Need Login Help using Erkanaauth - by El Forum - 06-27-2008, 12:51 PM
(SOLVED)Need Login Help using Erkanaauth - by El Forum - 06-27-2008, 02:03 PM
(SOLVED)Need Login Help using Erkanaauth - by El Forum - 06-27-2008, 02:49 PM
(SOLVED)Need Login Help using Erkanaauth - by El Forum - 06-28-2008, 06:19 AM
(SOLVED)Need Login Help using Erkanaauth - by El Forum - 06-28-2008, 09:35 AM
(SOLVED)Need Login Help using Erkanaauth - by El Forum - 06-29-2008, 03:38 PM
(SOLVED)Need Login Help using Erkanaauth - by El Forum - 06-29-2008, 04:17 PM



Theme © iAndrew 2016 - Forum software by © MyBB