0

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);
asked Nov 8, 2009 at 5:00

1 Answer 1

4

You should be using:

$this->input->post('your_post_variable');
answered Nov 8, 2009 at 5:42
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.