Add New Row

Table = The Table Name

Next is arrays of colums to add

$db->add(
    "table" , 
    [
        "col1" => "col2",
        "col2" => "col3"
    ]
)
Returns
Array(
   'STATE' => TRUE,
   'MESSAGE' => "Successfully added",
   'INSERT_ID' => "1"
)

Last updated