2
Using codeigniter how can I know if the Insert into worked really?
$novo_usuario=$this->db->query("INSERT INTO usuario (nome, email) VALUES ('pessoa','[email protected]')");
Via the variable $novo_usuario
how can I be sure that the record worked?