Welcome Guest, Not a member yet? Register   Sign In
Inserting with arrays > A Better Way?
#4

[eluser]BravoAlpha[/eluser]
[quote author="danfloun" date="1186978506"]
Code:
function Update()
   {
         $this->db->update('db_table', $_POST');
   }
[/quote]
I don't know if $_POST is a good idea or not, but I would call the model like this:

Model
Code:
function update($whatever)
{
    $this->db->update('db_table', $whatever);
}

Controller
Code:
$this->something->update($POST);


Messages In This Thread
Inserting with arrays > A Better Way? - by El Forum - 08-12-2007, 04:44 PM
Inserting with arrays > A Better Way? - by El Forum - 08-12-2007, 04:53 PM
Inserting with arrays > A Better Way? - by El Forum - 08-12-2007, 05:15 PM
Inserting with arrays > A Better Way? - by El Forum - 08-12-2007, 05:30 PM



Theme © iAndrew 2016 - Forum software by © MyBB