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 5f26207 commit bd6ce96Copy full SHA for bd6ce96
DB.php
@@ -16,10 +16,10 @@ public function __construct()
16
{
17
$this->table = Wingwah\User::$table;
18
19
- $host = '@host';
20
- $db = '@db';
21
- $username = '@username';
22
- $password = '@password';
+ $host = '@host'; // your db host
+ $db = '@db'; // your db name
+ $username = '@username'; // your db username
+ $password = '@password'; // your db password
23
24
try {
25
$this->handle = new PDO("mysql:host=$host;dbname=$db;",
0 commit comments