From what I understand using $this->db->insert() escapes the values:
http://codeigniter.com/user_guide/database/active_record.html#insert
Note: All values are escaped automatically producing safer queries.
But when I look into mysql, my inputs are not escaped, is it for some reason removed some how?
Worried about sql injections here, thats why I'm asking.