assorted guide fixes and additions
diff --git a/user_guide/general/controllers.html b/user_guide/general/controllers.html
index cd11eb1..d4f1489 100644
--- a/user_guide/general/controllers.html
+++ b/user_guide/general/controllers.html
@@ -375,6 +375,8 @@
 <li>CI_Loader</li>

 <li>config</li>

 <li>database</li>

+<li>dbutil</li>

+<li>dbforge</li>

 <li>file</li>

 <li>helper</li>

 <li>helpers</li>

diff --git a/user_guide/general/requirements.html b/user_guide/general/requirements.html
index 9acbd57..11a5076 100644
--- a/user_guide/general/requirements.html
+++ b/user_guide/general/requirements.html
@@ -58,8 +58,8 @@
 <h1>Server Requirements</h1>

 

 <ul>

-	<li><a href="http://www.php.net/">PHP</a> version 4.3.2 or newer</li>

-	<li>A Database. Supported databases are MySQL, MySQLi, MS SQL, Postgre, Oracle, SQLite, and ODBC</li>

+	<li><a href="http://www.php.net/">PHP</a> version 4.3.2 or newer.</li>

+	<li>A Database is required for most web appliction programming. Current supported databases are MySQL, MySQLi, MS SQL, Postgre, Oracle, SQLite, and ODBC.</li>

 </ul>

 

 

diff --git a/user_guide/general/views.html b/user_guide/general/views.html
index e41503f..851da92 100644
--- a/user_guide/general/views.html
+++ b/user_guide/general/views.html
@@ -162,7 +162,7 @@
 <p>Let's try it with your controller file.  Open it add this code:</p>

 

 <textarea class="textarea" style="width:100%" cols="50" rows="14">

-<?php

+&lt;?php

 class Blog extends Controller {

 

 	function index()

@@ -173,7 +173,7 @@
 		$this->load->view('blogview', $data);

 	}

 }

-?>

+?&gt;

 </textarea>

 

 

@@ -193,9 +193,6 @@
 

 <p>Then load the page at the URL you've been using and you should see the variables replaced.</p>

 

-<p><strong>Note:</strong> You'll notice that in the example above we are using PHP's alternative syntax.  If you

-are not familiar with it you can read about it <a href="alternative_php.html">here</a>.</p>

-

 <h2>Creating Loops</h2>

 

 <p>The data array you pass to your view files is not limited to simple variables.  You can

@@ -205,7 +202,7 @@
 <p>Here's a simple example. Add this to your controller:</p>

 

 <textarea class="textarea" style="width:100%" cols="50" rows="17">

-<?php

+&lt;?php

 class Blog extends Controller {

 

 	function index()

@@ -218,7 +215,7 @@
 		$this->load->view('blogview', $data);

 	}

 }

-?>

+?&gt;

 </textarea>

 

 

@@ -242,12 +239,12 @@
 

 &lt;?php endforeach;?>

 &lt;/ul>

-

 	

 &lt;/body>

 &lt;/html>

 </textarea>

-

+<p><strong>Note:</strong> You'll notice that in the example above we are using PHP's alternative syntax.  If you

+are not familiar with it you can read about it <a href="alternative_php.html">here</a>.</p>

 

 

 </div>