diff options
author | admin <devnull@localhost> | 2006-10-06 04:10:23 +0200 |
---|---|---|
committer | admin <devnull@localhost> | 2006-10-06 04:10:23 +0200 |
commit | c5f7fa3f8fea283b51ee6cd80b36b2112b2e81db (patch) | |
tree | b5ce6b140d38dba5288fbcc1eed0971d556b5ad8 /user_guide/database | |
parent | 5294f4f36aeb3b7685781708ce78ab28f1785764 (diff) |
Diffstat (limited to 'user_guide/database')
-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 />
|