Skip to content

Commit 7de7187

Browse files
authored
Update README.md
define commit
1 parent 97301d0 commit 7de7187

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,19 @@
11
# PHP-MySQL-Class
22
Mysql Connection V1
3+
4+
5+
6+
7+
Initialize
8+
------------
9+
```php
10+
<?php
11+
define('DBHost', 'localhost');
12+
define('DBName', 'northwind');
13+
define('DBUser', 'root');
14+
define('DBPassword', '');
15+
define("connection","connection");
16+
$db = new DatabaseController(DBHost, DBName, DBUser, DBPassword,connection);
17+
18+
?>
19+
```

0 commit comments

Comments
 (0)