From 634aeeb436eaaf26b806c7679419eb6056f9c770 Mon Sep 17 00:00:00 2001 From: Priit Kallas Date: Fri, 9 Mar 2012 14:28:39 +0200 Subject: [PATCH] Updated README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3961aa8..c82fefd 100644 --- a/README.md +++ b/README.md @@ -17,10 +17,10 @@ You will need to include and initiate it in your bootstrap. * Open Bootstrap.php in your "application" folder. * Add the following lines to somewhere at the top to include it: -```php - // Get pdo model and database adapter - require_once LIBRARY_PATH.'/pdo/PdoModel.php'; - require_once LIBRARY_PATH.'/pdo/Adapters/MysqlDbAdapter.php'; +``` +// Get pdo model and database adapter +require_once LIBRARY_PATH.'/pdo/PdoModel.php'; +require_once LIBRARY_PATH.'/pdo/Adapters/MysqlDbAdapter.php'; ``` * Now we need to open the connection and set the PdoModel default connection. First create the PDO variable in bootstrap class: ```php