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

Commit

Permalink
Added notes to arguments.
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Dehaven committed Jul 30, 2013
1 parent 26dc9ac commit 07d73ff
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,12 @@ Next, initialize the class with arguments:
```php
<?php
$trafficTracker = new TrafficTracker(
$dbHost,
$dbUsername,
$dbPassword,
$dbDatabase,
$trackPrefix,
$deleteRollingDays
$dbHost, // Your Database Host
$dbUsername, // Your Database Username
$dbPassword, // Your Database Password
$dbDatabase, // Your Database Name
$trackPrefix, // Preferred prefix for URL parameters and browser cookies
$deleteRollingDays // Delete database records older than {$deleteRollingDays} days
);
?>
```
Expand Down

0 comments on commit 07d73ff

Please sign in to comment.