Welcome Guest, Not a member yet? Register   Sign In
How to auto fill a text field?
#3

[eluser]glenconde[/eluser]
This is in my Models

Code:
function save(&$item_data,$item_id=false)
{
  if (!$item_id or !$this->exists($item_id))
  {
   if($this->db->insert('items',$item_data))
   {
    $item_data['item_id']=$this->db->insert_id();
    return true;
   }
   return false;
  }

  $this->db->where('item_id', $item_id);
  return $this->db->update('items',$item_data);
}


Messages In This Thread
How to auto fill a text field? - by El Forum - 03-01-2012, 12:15 AM
How to auto fill a text field? - by El Forum - 03-01-2012, 12:19 AM
How to auto fill a text field? - by El Forum - 03-01-2012, 12:20 AM



Theme © iAndrew 2016 - Forum software by © MyBB