I have a table named testimonial . The table structure is as follows.

But the table dont seem normalized. I would like somthing like.
trip_testimonial
-----------------------------------
id
trip_id
status
-----------------------------------
And another table as
testimonial
----------------------------------
id
name
email
website
message
-----------------------------------
But how do I enter the data into them in codeigniter. I have used something like
function add($data){
$this->db->insert('testimonials', $data);
if($this->db->affected_rows()>0){
return TRUE;
}else{
return FALSE;
}
}
What would be the best approach??