codeigniter view, add, update and delete
问题 I'm newbie in codeigniter and still learning. Anyone can help for sample in basic view, add, update, delete operation and queries in codeigniter will gladly appreciated. Just a simple one like creating addressbook for newbie. thanks, best regards 回答1: Some sample queries in Codeigniter class Names extends Model { function addRecord($yourname) { $this->db->set("name", $yourname); $this->db->insert("names"); return $this->db->_error_number(); // return the error occurred in last query }