I am using Codeigniter and I am registering a call in the database and I get the following message:
public function solicitacaoRapida(){
$banco = array(
'solicitante' => $this->input->post('empresaSolicitante'),
'local' => $this->input->post('localEmpresa'),
'departamento' => $this->input->post('nomeDepartamento'),
'assunto' => $this->input->post('tipoSolicitacao')
);
$this->db->insert('solicitacoes',$this);
redirect(base_url().'home','refresh');
}