vote up 0 vote down star

I have a controller user with a method login

For some reason, when I call:

$this->post

I get an error Undefined property: User::$post

While, this works fine:

print_r($_POST);
flag

1 Answer

vote up 4 vote down check

You should be using:

$this->input->post('your_post_variable');
link|flag
Whoops! :D Thanks – gAMBOOKa Nov 8 at 5:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.