diff options
Diffstat (limited to 'user_guide/database/utilities.html')
-rw-r--r-- | user_guide/database/utilities.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide/database/utilities.html b/user_guide/database/utilities.html index cf42aaee5..fcfc24945 100644 --- a/user_guide/database/utilities.html +++ b/user_guide/database/utilities.html @@ -227,7 +227,7 @@ $config = array (<br /> 'root' => 'root',<br />
'element' => 'element', <br />
'newline' => "\n", <br />
- ';tab' => "\t"<br />
+ 'tab' => "\t"<br />
);<br />
<br />
echo $this->dbutil->xml_from_result($query, $config);
@@ -252,7 +252,7 @@ via the command line, or have your server admin do it for you if you do not have <dfn>// Load the DB utility class</dfn><br />
$this->load->dbutil();<br /><br />
-<dfn>// Backup your entire database</dfn><br />
+<dfn>// Backup your entire database and assign it to a variable</dfn><br />
$backup =& $this->dbutil->backup();
<br /><br />
|