diff --git a/user_guide/libraries/zip.html b/user_guide/libraries/zip.html
index 3c3e44b..1994e34 100644
--- a/user_guide/libraries/zip.html
+++ b/user_guide/libraries/zip.html
@@ -71,7 +71,7 @@
<code>$this->load->library('zip');</code>
<p>Once loaded, the Parser library object will be available using: <dfn>$this->zip</dfn></p>
-<h2>Usage Example</h2>
+<h2>Usage Examples</h2>
<p>Simple example demonstrating how to compress a file and download it to your desktop.</p>
@@ -104,9 +104,19 @@
$this->zip->download('my_backup.zip'); // Parameter contains name of the downloaded file
</code>
+<p>You can also pass your file data as an array:</p>
-
+<code>
+$data = array(<br />
+ 'myfolder/mydata1.txt' => 'A Data String!',<br />
+ 'myfolder/mydata2.txt' => 'Another Data String!'<br />
+ );<br />
+<br />
+$this->zip->add_data($data);<br />
+<br />
+$this->zip->download('my_backup.zip'); // Parameter contains name of the downloaded file
+</code>