diff --git a/README.md b/README.md index be13ddc..95a953d 100644 --- a/README.md +++ b/README.md @@ -76,8 +76,9 @@ The `browse.php` file may look something like 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; +} ?> ```