fixed validation errors... about a zillion of em.
diff --git a/user_guide/libraries/input.html b/user_guide/libraries/input.html
index f810029..b674713 100644
--- a/user_guide/libraries/input.html
+++ b/user_guide/libraries/input.html
@@ -108,7 +108,7 @@
<code>$data = $this->input->xss_clean($data);</code>
<p>If you want the filter to run automatically every time it encounters POST or COOKIE data you can enable it by opening your
-<kbd>application/config/config.php</kbd> file and setting this:
+<kbd>application/config/config.php</kbd> file and setting this:</p>
<code>$config['global_xss_filtering'] = TRUE;</code>
@@ -122,7 +122,7 @@
<p>CodeIgniter comes with three helper functions that let you fetch POST, COOKIE or SERVER items. The main advantage of using the provided
functions rather then fetching an item directly ($_POST['something']) is that the functions will check to see if the item is set and
return false (boolean) if not. This lets you conveniently use data without having to test whether an item exists first.
-In other words, normally you might do something like this:
+In other words, normally you might do something like this:</p>
<code>
if ( ! isset($_POST['something']))<br />
@@ -211,7 +211,7 @@
<a href="#top">Top of Page</a> ·
<a href="../index.html">User Guide Home</a> ·
Next Topic: <a href="loader.html">Loader Class</a>
-<p>
+</p>
<p><a href="http://www.codeigniter.com">CodeIgniter</a> · Copyright © 2007 · <a href="http://ellislab.com/">Ellislab, Inc.</a></p>
</div>