[eluser]Derek Allard[/eluser]
I think you're over-complicating this for yourself. Could you show me what you've tried to get multiple values in? I'll start, how would you try to insert both name and age given the below:
Code:
$this->load->model('people_model');
$name = "Derek";
$age = 35;
$this->people_model->new_person(); // what does this line look like to get both name and age inserted?