Added get_post() to the Input class.
Documented get() in the Input class.
diff --git a/user_guide/libraries/input.html b/user_guide/libraries/input.html
index 2cf8b6d..af57a4c 100644
--- a/user_guide/libraries/input.html
+++ b/user_guide/libraries/input.html
@@ -158,6 +158,18 @@
 

 <code>$this->input->post('some_data', TRUE);</code>

 

+<h2>$this->input->get()</h2>

+

+<p>This function is identical to the post function, only it fetches get data:</p>

+

+<code>$this->input->get('some_data', TRUE);</code>

+

+<h2>$this->input->get_post()</h2>

+

+<p>This function will search through both the post and get streams for data, looking first in post, and then in get:</p>

+

+<code>$this->input->get_post('some_data', TRUE);</code>

+

 <h2>$this->input->cookie()</h2>

 

 <p>This function is identical to the post function, only it fetches cookie data:</p>