Skip to content

Commit 87ef46b

Browse files
committed
same
1 parent 1188a7f commit 87ef46b

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

readme.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,36 @@
11
### Table of Contents
2-
**[Initialization](#initialization)**
3-
**[Insert Query](#insert-query)**
4-
**[Update Query](#update-query)**
5-
**[Select Query](#select-query)**
6-
**[Delete Query](#delete-query)**
7-
**[Generic Query](#generic-query-method)**
8-
**[Raw Query](#raw-query-method)**
9-
**[Where Conditions](#where-method)**
10-
**[Order Conditions](#ordering-method)**
11-
**[Group Conditions](#grouping-method)**
12-
**[Properties Sharing](#properties-sharing)**
13-
**[Joining Tables](#join-method)**
14-
**[Subqueries](#subqueries)**
15-
**[Helper Functions](#helper-commands)**
16-
**[Transaction Helpers](#transaction-helpers)**
2+
**[Initialization](#initialization)**
3+
**[Insert Query](#insert-query)**
4+
**[Update Query](#update-query)**
5+
**[Select Query](#select-query)**
6+
**[Delete Query](#delete-query)**
7+
**[Generic Query](#generic-query-method)**
8+
**[Raw Query](#raw-query-method)**
9+
**[Where Conditions](#where-method)**
10+
**[Order Conditions](#ordering-method)**
11+
**[Group Conditions](#grouping-method)**
12+
**[Properties Sharing](#properties-sharing)**
13+
**[Joining Tables](#join-method)**
14+
**[Subqueries](#subqueries)**
15+
**[Helper Functions](#helper-commands)**
16+
**[Transaction Helpers](#transaction-helpers)**
1717

1818
### Initialization
1919
To utilize this class, first import MysqliDb.php into your project, and require it.
2020

2121
```php
22-
require_once('Mysqlidb.php');
22+
require_once ('MysqliDb.php');
2323
```
2424

2525
After that, create a new instance of the class.
2626

2727
```php
28-
$db = new Mysqlidb('host', 'username', 'password', 'databaseName');
28+
$db = new MysqliDb ('host', 'username', 'password', 'databaseName');
2929
```
3030

3131
Its also possible to set a table prefix:
3232
```php
33-
$db->setPrefix('tablePrefix');
33+
$db->setPrefix ('my_');
3434
```
3535

3636
Next, prepare your data, and call the necessary methods.

0 commit comments

Comments
 (0)