<?php

class Category_model extends CI_Model
{

// ...

function setCategory(){
$this->db->insert('categories', array(
'name'=>$this->input->post('name',TRUE),
'parent'=>$this->input->post('parent',TRUE)
));
}

}