function insertNote($parm) { $pComplaintID = $parm["ComplaintID"]; $pNote = $parm["Note"]; $note = new note(); $note->setComplaintID($pComplaintID); $note->setNote($pNote); $note->save(); }