change dbutil to dbforge in docs
diff --git a/user_guide/database/forge.html b/user_guide/database/forge.html
index f234b8a..7cbaa11 100644
--- a/user_guide/database/forge.html
+++ b/user_guide/database/forge.html
@@ -91,7 +91,7 @@
<p>Permits you to create the database specified in the first parameter. Returns TRUE/FALSE based on success or failure:</p>
-<code>if ($this->dbutil->create_database('my_db'))<br />
+<code>if ($this->dbforge->create_database('my_db'))<br />
{<br />
echo 'Database created!';<br />
}</code>
@@ -103,7 +103,7 @@
<p>Permits you to drop the database specified in the first parameter. Returns TRUE/FALSE based on success or failure:</p>
-<code>if ($this->dbutil->drop_database('my_db'))<br />
+<code>if ($this->dbforge->drop_database('my_db'))<br />
{<br />
echo 'Database deleted!';<br />
}</code>