1

Topic: Showing vars from array on template not working

hey ok so i got some info stored inside an array like this:

$TEMPLATE->assign("app_comments", $app_comments);

on the template file i want to show them i started this loop:

<!-- BEGIN app_comments -->
{body}
<!-- END app_comments -->

i tried with one var that its stored: {body} to see if it works but its not showing anything.
Must mention that on the template file i have another big BEGIN statemement wich lists all the profiles
So my code is something like this:

<!-- BEGIN guests_profiles -->
---- html table to show profiles ---
  <!-- BEGIN app_comments -->
  {body}
  <!-- END app_comments -->
<!-- END guests_profiles -->

the listing of profiles works, but the {body} and other tags inside the second loop are not working.