On Feb 16, 2008 8:56 AM, Davide Michel 'ZioBudda' Morelli <<a href="mailto:michel@ziobudda.net">michel@ziobudda.net</a>> 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 'ZioBudda' Morelli <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 -- Fax: +39-0291390660<br><br><a href="http://www.ziobudda.net" target="_blank">http://www.ziobudda.net</a> ICQ: 58351764<br><a href="http://www.ziobuddalabs.it" target="_blank">http://www.ziobuddalabs.it</a> Skype: zio_budda<br>
<a href="http://www.ajaxblog.it" target="_blank">http://www.ajaxblog.it</a> MSN: <a href="mailto:michel@ziobuddalabs.it">michel@ziobuddalabs.it</a><br> 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'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>
<?php<br>
$view = views_get_view("articles");<br>
<br>
$nodes[] = views_build_view('embed',$view,array(),false,0);<br>
<br>
<br>
print "<h1>Articles</h1>";<br>
foreach($nodes as $node)<br>
{<br>
print $node;<br>
} <br>
?><br clear="all"><br>-- <br>Thomas G. Willis