In the controller in CI, you can get all the post variables by doing something like this:
$data = $this->input->post();
In EE (built by CI by the same people), a similar syntax would be:
$data = $this->EE->input->post();
The only problem is that instead of an array with all the data, you get a boolean false.
Is there a way to get an array of all message data using ExpressionEngine and not POST superclasses?
Thank.
source
share