On Feb 16, 2008 8:56 AM, Davide Michel &#39;ZioBudda&#39; Morelli &lt;<a href="mailto:michel@ziobudda.net">michel@ziobudda.net</a>&gt; wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi all. I need to create a page where the content is get from a view,<br>but to the same content I need to add other information (categories,<br>uid, and other).<br>Where I can find a RTFM that say me how to get the result of a view and<br>
work on it ?<br><br>Tnx.<br><br>--<br>Michel &#39;ZioBudda&#39; Morelli &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a href="mailto:michel@ziobudda.net">michel@ziobudda.net</a><br>Consulenza sistemistica in ambito OpenSource.<br>Sviluppo applicazioni web dinamiche (LAMP+Ajax)<br>
Telefono: 0200619074<br>Telefono Cell: +39-3939890025 -- &nbsp;Fax: +39-0291390660<br><br><a href="http://www.ziobudda.net" target="_blank">http://www.ziobudda.net</a> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ICQ: 58351764<br><a href="http://www.ziobuddalabs.it" target="_blank">http://www.ziobuddalabs.it</a> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Skype: zio_budda<br>
<a href="http://www.ajaxblog.it" target="_blank">http://www.ajaxblog.it</a> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;MSN: <a href="mailto:michel@ziobuddalabs.it">michel@ziobuddalabs.it</a><br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;JABBER: <a href="mailto:michel@gmail.com">michel@gmail.com</a><br>
<font color="#888888"><br>--<br>[ Drupal support list | <a href="http://lists.drupal.org/" target="_blank">http://lists.drupal.org/</a> ]<br></font></blockquote></div><br><br>I had to do something similar last night, perhaps this will put you in
the right direction. I&#39;m probably not doing it completely right.<br>
<br>
Check this page out too.<br>
<a href="http://drupal.org/node/48816">http://drupal.org/node/48816</a><br>
<br>
<br>
&lt;?php<br>
$view = views_get_view(&quot;articles&quot;);<br>
<br>
$nodes[] = views_build_view(&#39;embed&#39;,$view,array(),false,0);<br>
<br>
<br>
print &quot;&lt;h1&gt;Articles&lt;/h1&gt;&quot;;<br>
foreach($nodes as $node)<br>
{<br>
&nbsp;&nbsp; print $node;<br>
} <br>
?&gt;<br clear="all"><br>-- <br>Thomas G. Willis