Skip to content

Commit

Permalink
Merge pull request #75 from acidvertigo/patch-1
Browse files Browse the repository at this point in the history
Fix browse.php example
  • Loading branch information
Paul M. Jones committed Mar 27, 2016
2 parents c7d9ca4 + 76c8f9a commit 5d7ce8a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,9 @@ The `browse.php` file may look something like this:
<?php
foreach ($this->items as $item) {
$id = htmlspecialchars($item['id'], ENT_QUOTES, 'UTF-8');
$name = htmlspecialchars($item['name'], ENT_QUOTES, 'UTF-8')
$name = htmlspecialchars($item['name'], ENT_QUOTES, 'UTF-8');
echo "Item ID #{$id} is '{$name}'." . PHP_EOL;
}
?>
```

Expand Down

0 comments on commit 5d7ce8a

Please sign in to comment.