Skip to content

Commit

Permalink
Update readme and remove changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ThingEngineer committed Nov 4, 2010
1 parent b49872e commit 0f3c14d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
12 changes: 0 additions & 12 deletions changelog.md

This file was deleted.

3 changes: 2 additions & 1 deletion readme.md
Expand Up @@ -102,7 +102,8 @@ $results = $db->get('tableName');
print_r($results); // contains array of returned rows

Optionaly you can use method chaining to call where multiple times without calling referancing your object over an over:
$results = $db->where('id', 1)
$results = $db
->where('id', 1)
->where('title', 'MyTitle')
->get('tableName');
print_r($results); // contains array of returned rows
Expand Down

0 comments on commit 0f3c14d

Please sign in to comment.