We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e54af3f commit 38c78beCopy full SHA for 38c78be
README.md
@@ -34,3 +34,34 @@ Basic Table // use northwind
34
| 10253 | 3 | red
35
36
37
+
38
39
+#### Insert Method (TableName, Data = array()):
40
41
42
43
+TableName, Data:
44
45
+```php
46
+$tableName = "Orders";
47
48
+$data = Array
49
+(
50
+ "ShipName" => "Blue",
51
+ "ShipAddress" => "Nottingham",
52
+ "ShipCity" => "UK"
53
+);
54
+```
55
56
57
+Insert Method
58
+<?php
59
+$methodInsert = $method->Insert($tableName,$data);
60
+?>
61
62
63
64
65
66
67
0 commit comments