Inserts multiple values into a table
public insertMulti ( string $table, array $fields, array $values ) : boolean | ||
$table | string | The table being inserted into. |
$fields | array | The array of field/column names being inserted. |
$values | array | The array of values to insert. The values should be an array of rows. Each row should have values keyed by the column name. Each row must have the values in the same order as $fields. |
return | boolean |