Skip to content
This repository was archived by the owner on Sep 28, 2024. It is now read-only.

Commit 07d73ff

Browse files
author
Adam Dehaven
committed
Added notes to arguments.
1 parent 26dc9ac commit 07d73ff

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,12 @@ Next, initialize the class with arguments:
7979
```php
8080
<?php
8181
$trafficTracker = new TrafficTracker(
82-
$dbHost,
83-
$dbUsername,
84-
$dbPassword,
85-
$dbDatabase,
86-
$trackPrefix,
87-
$deleteRollingDays
82+
$dbHost, // Your Database Host
83+
$dbUsername, // Your Database Username
84+
$dbPassword, // Your Database Password
85+
$dbDatabase, // Your Database Name
86+
$trackPrefix, // Preferred prefix for URL parameters and browser cookies
87+
$deleteRollingDays // Delete database records older than {$deleteRollingDays} days
8888
);
8989
?>
9090
```

0 commit comments

Comments
 (0)