Skip to content

Commit 38c78be

Browse files
authored
Update README.md
Insert Method commit
1 parent e54af3f commit 38c78be

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

README.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,34 @@ Basic Table // use northwind
3434
| 10253 | 3 | red
3535

3636

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+
```php
57+
Insert Method
58+
<?php
59+
$methodInsert = $method->Insert($tableName,$data);
60+
?>
61+
```
62+
63+
64+
65+
66+
67+

0 commit comments

Comments
 (0)