<br>The data you are trying to get is inside an array that is inside an array.<br><br><span style="color: rgb(34, 34, 34);"><font face="&#39;courier new&#39;, monospace">Array(<br>  [kit_id] =&gt; 570<br>  [module] =&gt; uc_product_kit<br>
  [attributes] =&gt; Array(<br>    [Attending] =&gt; Array(<br>      [0] =&gt; Jane Doe, John Doe<br>    )<br>    [Note] =&gt; Array(<br>      [0] =&gt; We are friends of Eric Smith and Sandy Smith<br>   
)<br>  )<br>  [shippable] =&gt; 0<br>  [unique_id] =&gt; 4c7d632a8090c7.95333579<br>)</font></span><br><br>You need to add the name of the array that this array is in.<br><br><font color="#222222"><font face="arial, helvetica, sans-serif"><div>
<font face="&#39;courier new&#39;, monospace">$data = unserialize($output);</font></div>
<div><font face="&#39;courier new&#39;, monospace">print $data</font><span style="color: rgb(34, 34, 34);"><font face="&#39;courier new&#39;, monospace">[&#39;attributes&#39;]</font></span><font face="&#39;courier new&#39;, monospace">[&#39;Attending&#39;][0];<br>
<br>Little rusty at this.  Hope that helps.<br>Cory<br></font></div></font></font><br>