コード例 #1
0
ファイル: post.php プロジェクト: chadthegreat/FFPACgvsu
function insertNote($parm)
{
    $pComplaintID = $parm["ComplaintID"];
    $pNote = $parm["Note"];
    $note = new note();
    $note->setComplaintID($pComplaintID);
    $note->setNote($pNote);
    $note->save();
}