Welcome Guest, Not a member yet? Register   Sign In
Ignore submit button when inserting with Active Record
#3

[eluser]Armchair Samurai[/eluser]
Use unset()
Code:
/* In your model */

function enter_data($arr)
{
    unset($arr['submit']);

    $this->db->set($arr);
    $this->db->insert('foobar');
}


Messages In This Thread
Ignore submit button when inserting with Active Record - by El Forum - 08-01-2009, 05:36 PM
Ignore submit button when inserting with Active Record - by El Forum - 08-01-2009, 07:40 PM
Ignore submit button when inserting with Active Record - by El Forum - 08-01-2009, 09:09 PM



Theme © iAndrew 2016 - Forum software by © MyBB