Welcome Guest, Not a member yet? Register   Sign In
Input fields are coming up empty
#1

[eluser]jrock2004[/eluser]
I have been looking at this code too long and I am sure I am missing something. When I hit submit and I grab the input fields, they are empty.

View
Code:
<div id="login_form">
<h1>Login</h1>
    &lt;?php
echo form_open('admin/validate_credentials');
echo form_input('username', 'Username');
echo form_password('password', 'Password');
echo form_submit('submit', 'Login');
    ?&gt;
</div>&lt;!-- end login_form--&gt;

Controller
Code:
public function index() {
  $this->load->library('session');
  $this->load->helper('form');

  $data['content'] = 'admin/login';

        $this->load->view('admin/template.php', $data);
}

function validate_credentials() {
  $this->load->helper('form');
  $this->load->library('session');
  $this->load->model('membership');
  $query = $this->membership->validate();
  
  if($query) { // if the user's credentials validated...
   $data = array(
    'username' => $this->input->post('username'),
    'is_logged_in' => true
   );
   $this->session->set_userdata($data);
   redirect('adminArea/main');
  }
  else { // incorrect username or password
   $this->index();
   echo "Login failed" . $this->input->post('username');
  }
}

Thanks for any help


Messages In This Thread
Input fields are coming up empty - by El Forum - 04-18-2012, 06:58 AM
Input fields are coming up empty - by El Forum - 04-18-2012, 07:07 AM
Input fields are coming up empty - by El Forum - 04-18-2012, 07:12 AM
Input fields are coming up empty - by El Forum - 04-18-2012, 07:43 AM
Input fields are coming up empty - by El Forum - 04-18-2012, 07:46 AM
Input fields are coming up empty - by El Forum - 04-18-2012, 07:48 AM
Input fields are coming up empty - by El Forum - 04-18-2012, 07:50 AM
Input fields are coming up empty - by El Forum - 04-18-2012, 07:51 AM
Input fields are coming up empty - by El Forum - 04-18-2012, 07:52 AM
Input fields are coming up empty - by El Forum - 04-18-2012, 07:53 AM
Input fields are coming up empty - by El Forum - 04-18-2012, 08:00 AM
Input fields are coming up empty - by El Forum - 04-18-2012, 08:03 AM
Input fields are coming up empty - by El Forum - 04-18-2012, 08:12 AM
Input fields are coming up empty - by El Forum - 04-18-2012, 08:30 AM
Input fields are coming up empty - by El Forum - 04-18-2012, 09:49 AM



Theme © iAndrew 2016 - Forum software by © MyBB