Skip to content

Commit bd6ce96

Browse files
authored
Update DB.php
1 parent 5f26207 commit bd6ce96

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

DB.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ public function __construct()
1616
{
1717
$this->table = Wingwah\User::$table;
1818

19-
$host = '@host';
20-
$db = '@db';
21-
$username = '@username';
22-
$password = '@password';
19+
$host = '@host'; // your db host
20+
$db = '@db'; // your db name
21+
$username = '@username'; // your db username
22+
$password = '@password'; // your db password
2323

2424
try {
2525
$this->handle = new PDO("mysql:host=$host;dbname=$db;",

0 commit comments

Comments
 (0)