06-30-2008, 11:06 AM
[eluser]charlie spider[/eluser]
have you been monkeying around with any of your redux_auth files ???
check them for any echo or prints
to load your views, shouldn't you be using:
$this->load->view('register/register_view', $data);
instead of:
$this->template->load('register/register_view');
???????
side note:
to Ignite your code even more you should use
$this->input->post('username')
instead of
$_POST['username']
because: http://ellislab.com/codeigniter/user-gui...input.html
because of the
have you been monkeying around with any of your redux_auth files ???
check them for any echo or prints
to load your views, shouldn't you be using:
$this->load->view('register/register_view', $data);
instead of:
$this->template->load('register/register_view');
???????
side note:
to Ignite your code even more you should use
$this->input->post('username')
instead of
$_POST['username']
because: http://ellislab.com/codeigniter/user-gui...input.html
because of the