On a codeigniter installation, I am trying to use the inbuilt $this->input->post('some_data')
function, however $this->input->post()
is an empty array.
A print_r($_POST)
gives all the variables fully and correctly?
According to the codeigniter docs, The input class "is initialized automatically by the system so there is no need to do it manually", leaving me wondering what else I'm meant to do.
Any thoughts on how I should try to get this working?
Thanks!
key
or your$this->input->post('some_data')
is not working ? – Sokoto