I am tring to export some perticular fields from the database .
$crud->columns('fra_name', 'fra_mobile', 'fra_city', 'fra_state', 'fra_email', 'fra_profession', 'fra_year_exp');
$crud->set_subject('my subject');
$crud->where('fra_status',0);
$crud->order_by('fra_id','desc');
$crud->unset_fields('fra_status');
In my database table I have one more field which is 'fra_address' and i m not getting this in exported file
And i dont want to show 'fra_address filed' in crud html table.
Please help me hopw to do it.
.