I am trying to receive and parse a JSON object sent in a POST request using Codeigniter but I cannot \"find\" it.
This is my controller code:
public
try
json_decode(array($this->input->post()))
OR
$tmp[] = (array)json_decode($this->input->post()); print_r($tmp);