05-28-2017, 09:21 AM
@firestorm
https://pastebin.com/Jp2EbDTw (line 202)
I've rewritten insert function so that you can add more than one record to a table.
Example:
https://pastebin.com/Jp2EbDTw (line 202)
I've rewritten insert function so that you can add more than one record to a table.
Example:
Code:
$fields = array (
Code:
"Number" => array(1,2),
Code:
"Letter" => array("A","B")
Code:
);
Code:
$db -> insert("test_table",$fields);