Welcome Guest, Not a member yet? Register   Sign In
[SOLVED] $this->db->insert() adds all global fields from controller
#8

[eluser]wiredesignz[/eluser]
You are creating a model descendant, so it will have controller objects assigned as described above.

Try a simple User library or stdClass, no inheritance.

Example:
Code:
$User = new StdClass();

$User->attributeA = $this->input-post('A');

$this->db->insert($User);


Messages In This Thread
[SOLVED] $this->db->insert() adds all global fields from controller - by El Forum - 07-14-2008, 07:13 AM



Theme © iAndrew 2016 - Forum software by © MyBB