Index: help/embed.html
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views/help/embed.html,v
retrieving revision 1.1
diff -u -r1.1 embed.html
--- help/embed.html	13 Jun 2008 00:56:19 -0000	1.1
+++ help/embed.html	30 Nov 2010 15:59:22 -0000
@@ -22,4 +22,14 @@
 function views_embed_view($name, $display_id = 'default') {
 </code>
 
+So let's say I wanted to embed a the block display of a view I called MYVIEW and I wanted to pass it the arguments 1 2 and 3:
+
+<code>
+$viewName = 'MYVIEW';
+$display_id = 'block';
+$myArguments = array(1, 2, 3);
+print views_embed_view($viewName, $display_id, $myArguments);
+</code>
+
+
 To figure out the id of a display, hover your mouse over the tab to select that display. Everything after the '#views-tab-' is the id of that display. This ID is guaranteed never to change unless you delete the display and create a new one.
