I may be missing something here but could this not be done with <a href="http://drupal.org/project/uc_views">http://drupal.org/project/uc_views</a> and a Global Rewrite. <br><br><div class="gmail_quote">On Fri, Sep 3, 2010 at 3:25 PM, Christopher M. Jones <span dir="ltr">&lt;<a href="mailto:cjones@partialflow.com">cjones@partialflow.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Just a tip, from a coder to a non coder. Install the devel module, and<br>
in stead of print_r() you can use dpm(), which outputs arrays using<br>
krumo. Much easier to read and understand.<br>
<br>
Glad you figured it out.<br>
<div class="im"><br>
On 09/02/2010 10:14 PM, Shai Gluskin wrote:<br>
&gt; Hi Cory,<br>
&gt;<br>
&gt; Thanks.  I think we were writing at the same time.<br>
&gt;<br>
&gt; Unserializing the $output won&#39;t work, because the $output comes with<br>
&gt; some other stuff, like html.<br>
&gt;<br>
&gt; What works is this:<br>
&gt;<br>
&gt; $data = unserialize($row-&gt;{$field-&gt;field_alias});<br>
&gt; print $data[&#39;attributes&#39;][&#39;Attending&#39;][0];<br>
&gt;<br>
&gt; To all, I apologize for not quoting the array keys in my previous &quot;I got<br>
&gt; it&quot; post.<br>
&gt;<br>
&gt; But thank you.<br>
&gt;<br>
&gt; I&#39;ve posted an issue for documentation at the Views queue, suggesting a<br>
&gt; change in the explanatory text of views-view-field.tpl.php to be<br>
&gt; explicit that the snippet is literal.<br>
&gt;<br>
&gt; You can +1 or make alternative suggestions at:<br>
&gt; <a href="http://drupal.org/node/901088" target="_blank">http://drupal.org/node/901088</a><br>
&gt;<br>
&gt; Shai<br>
&gt;<br>
&gt; On Thu, Sep 2, 2010 at 9:30 PM, Cory Gilliam &lt;<a href="mailto:imaaxa@gmail.com">imaaxa@gmail.com</a><br>
</div><div class="im">&gt; &lt;mailto:<a href="mailto:imaaxa@gmail.com">imaaxa@gmail.com</a>&gt;&gt; wrote:<br>
&gt;<br>
&gt;<br>
&gt;     The data you are trying to get is inside an array that is inside an<br>
&gt;     array.<br>
&gt;<br>
&gt;<br>
&gt;     Array(<br>
&gt;        [kit_id] =&gt; 570<br>
&gt;        [module] =&gt; uc_product_kit<br>
&gt;        [attributes] =&gt; Array(<br>
&gt;          [Attending] =&gt; Array(<br>
&gt;            [0] =&gt; Jane Doe, John Doe<br>
&gt;          )<br>
&gt;          [Note] =&gt; Array(<br>
&gt;            [0] =&gt; We are friends of Eric Smith and Sandy Smith<br>
&gt;          )<br>
&gt;        )<br>
&gt;        [shippable] =&gt; 0<br>
&gt;        [unique_id] =&gt; 4c7d632a8090c7.95333579<br>
&gt;     )<br>
&gt;<br>
&gt;     You need to add the name of the array that this array is in.<br>
&gt;<br>
&gt;     $data = unserialize($output);<br>
&gt;     print $data [&#39;attributes&#39;] [&#39;Attending&#39;][0];<br>
&gt;<br>
&gt;     Little rusty at this.  Hope that helps.<br>
&gt;     Cory<br>
&gt;<br>
&gt;<br>
&gt;     --<br>
&gt;     [ Drupal support list | <a href="http://lists.drupal.org/" target="_blank">http://lists.drupal.org/</a> ]<br>
&gt;<br>
&gt;<br>
</div>--<br>
<div><div></div><div class="h5">[ Drupal support list | <a href="http://lists.drupal.org/" target="_blank">http://lists.drupal.org/</a> ]<br>
</div></div></blockquote></div><br>