Welcome Guest, Not a member yet? Register   Sign In
got any ideas on this?
#1

[eluser]mistress_shiira[/eluser]
good day guys!im still new to CI and ive been trying to learn how to use a framework such as this.
im currently redoing an admin page that i have developed without using any framework before.i would like to redo it using CI.unfortunately, i have come across this problem.hope you can tell me how to go about with this.
actually i have this code:
Quote:function index(){
$this->load->library('validation','session');
$this->load->helper('form');
//set validation rules
$rules['username'] = "trim|required|callback_check_input";
$rules['password'] = "trim|required";
$this->validation->set_rules($rules);

//set validation fields
$fields['username'] = "username";
$fields['password'] = "password";
$this->validation->set_fields($fields);

if ($this->validation->run()) {
$query = $this->db->getwhere('users', array('username' => $this->input->post('username')));
$row = $query->row();
$this->load->view('cpats_main');

}
else{

$this->load->view('cpats_admin');
}
}
actually it already works,i can log in and proceed to the next page.the problem is that when i re enter the URL and hit enter,the page goes back to the admin page.how can i avoid it doing that?


Messages In This Thread
got any ideas on this? - by El Forum - 11-07-2007, 08:08 PM
got any ideas on this? - by El Forum - 11-07-2007, 08:44 PM
got any ideas on this? - by El Forum - 11-07-2007, 08:53 PM
got any ideas on this? - by El Forum - 11-07-2007, 11:04 PM
got any ideas on this? - by El Forum - 11-07-2007, 11:08 PM
got any ideas on this? - by El Forum - 11-08-2007, 12:00 AM
got any ideas on this? - by El Forum - 11-08-2007, 12:05 AM
got any ideas on this? - by El Forum - 11-08-2007, 12:49 AM
got any ideas on this? - by El Forum - 11-08-2007, 01:01 AM
got any ideas on this? - by El Forum - 11-08-2007, 01:06 AM
got any ideas on this? - by El Forum - 11-08-2007, 01:08 AM
got any ideas on this? - by El Forum - 11-08-2007, 01:10 AM
got any ideas on this? - by El Forum - 11-08-2007, 10:46 AM
got any ideas on this? - by El Forum - 11-08-2007, 11:11 AM



Theme © iAndrew 2016 - Forum software by © MyBB