Hi BaussDesigns,
i hope i understood u in the right way, here is an example of my code how I am solving that issue:
PHP Code:
$result = $vbulletin->db->query_read($sql); //have a query here such like "SELECT * FROM" . TABLE_PREFIX and what so ever ....
$dataformeeting = $this->makeArray( $result ); // i got a make Array method in my class, because I like to work with multidimensional arrays however what i get is something like this:
//array(0=>array("id"=>1), 1=>array('title'=>"testTitle"), ... and so on)
//here starts your requested part i am fetching a template which just has something like this
//<tr>
//<td>{vb:raw value.id}</td>
//<td>{vb:raw value.title}</td>
//</tr>
//make template ready
foreach ($dataformeeting as $item => $value)
{
$templater = vB_Template::create('meeting_my_meetings_list');
$templater->register('value', $value); //u have to register a coustom var for your template, in my case i use the value which i got from the foreach
$mymeetingslist .= $templater->render(); // it is absolutely important that u have .= because u are in a loop, and u dont want to overwrite everytime the $mymeetinglist (in my case)
}
Thats it basically
hope it helps you at least in getting an idea!