From 0533cee1595d070edd32384b7adcb7d56d160d63 Mon Sep 17 00:00:00 2001 From: Shein Alexey Date: Sun, 20 Mar 2011 12:30:23 +0000 Subject: [PATCH] Added \n to the example output. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@309468 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/sqlite/functions/sqlite-fetch-column-types.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/sqlite/functions/sqlite-fetch-column-types.xml b/reference/sqlite/functions/sqlite-fetch-column-types.xml index 37f93b8b01..4a31353836 100644 --- a/reference/sqlite/functions/sqlite-fetch-column-types.xml +++ b/reference/sqlite/functions/sqlite-fetch-column-types.xml @@ -116,7 +116,7 @@ sqlite_query($db, 'CREATE TABLE foo (bar varchar(10), arf text)'); $cols = sqlite_fetch_column_types('foo', $db, SQLITE_ASSOC); foreach ($cols as $column => $type) { - echo "Column: $column Type: $type"; + echo "Column: $column Type: $type\n"; } ?> ]]> @@ -134,7 +134,7 @@ $db->query('CREATE TABLE foo (bar varchar(10), arf text)'); $cols = $db->fetchColumnTypes('foo', SQLITE_ASSOC); foreach ($cols as $column => $type) { - echo "Column: $column Type: $type"; + echo "Column: $column Type: $type\n"; } ?> ]]>